| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
This is my vim setting colleciton, it's make for OSX , so I am not sure if it can work on windows. I tried it on linux, it works well for most of time.
Some of these settings may need a vim version large than 7.4 with pyhton2 support, if you are using native vim on Mac OSX, you may need to install a new one by brew
The installation will take a long time to run :BundleInstall in vi, if you get stuck at the last step, you can just reopen a vim and re-run :BundleInstall
via wget
sh -c "$(wget https://raw.githubusercontent.com/johnzeng/vimhome/master/install.sh -O -)"
via curl
sh -c "$(curl -fsSL https://raw.githubusercontent.com/johnzeng/vimhome/master/install.sh)"
This plugin set is using ag as fuzzy finder source, so you may need to install it by yourself. Trust me, this is amazing.
Please read to vimrc, you can see all plugins there, you can get help from their doc file or git readme file so you will know how to use them, Some of the frequently used plugins are:
....
You can start from fzf, nerdtree and grep at first, with them you can work in most of situation
If you need to do pyhotn completion, please install jedi, which is needed by jedi-vim
pip install jedi
You can use clang-tags to source the cpp reference, check it out here
If you need to use golang completion, please run the following command provided by vim-go in vim after you have finished installing all package
:GoInstallBinaries
If you need to use java completion, you may suffer from long latency when you open a .java at first time, don't worry, it won't take such long latency the next time. Maybe you will need a javac to compile some jar file needed by vim-javacomplete2.
If you need to use erlang completion , you may need to have escript excutable file in your $PATH , which means that you need to install erlang locally so you can have erlang-completion.
Refer to the readme in vim-erlang , you will need to set up wrangler and host name to make the plugin work
also, you should define the path for wrangler:
let g:erlangWranglerPath='/Users/johnzeng/bin/wrangler'
If you are using nvim, or ycm , you may need to set up python program in your .vimrc file like this:
let g:python3_host_prog = "/usr/local/bin/python3" let g:python_host_prog = "/usr/local/bin/python" let g:ycm_server_python_interpreter = "/usr/bin/python"
the python path need to fix with your own system, please use which python3 or which python to check it out
| Back | FazBrowse Home | New Git URL |