-
-
Notifications
You must be signed in to change notification settings - Fork 44
Install external dependency
tracyone edited this page Oct 28, 2021
·
13 revisions
vinux has following dependency:
- cscope. A developer's tool for browsing source code.
- ctags. Generates an index (or tag) file of C language objects found in C source and header files.
- curl.
- git.
- ag. A code searching tool similar to ack, which focus on speed.
- clang. ycm, vim-clang-format, clang_complete and deoplete.nvim dependence on clang binary or clang lib.
sudo apt-get install cscope exuberant-ctags curl git
Install homebrew first.
brew install curl git cscope ctags
dowload *.exe then copy them to c:\Windows\system32
windows relate tools are collected here
the_silver_searcher#installing
Build vim8 from source:
git clone https://github.com/vim/vim
cd vim
./configure \
--with-features=huge \
--with-compiledby="$(whoami)" \
--enable-multibyte \
--enable-gui=auto \
--enable-pythoninterp \
--enable-gpm \
--enable-cscope \
--enable-fontset \
--enable--terminal \
--enable-termtruecolor \
--enable-fail-if-missing
make && sudo make install
On macOS, you can install vim8 by homebrew.
brew install vim