Attention: This is for personal use ony! Don't clone and don't use, unless...
Clone the repo:
git clone https://github.com/adcosta/vimfiles.git ~/.vim(Re)Install Plugins (not stored in repo, except Plug.vim):
vim +PlugClean +PlugInstall +qall
NOTE: Some plugins, like YCM, may require extra installation
See https://github.com/ycm-core/YouCompleteMe#installation
Symlink .vimrc and .gvimrc to .vim/vimrc and .vim/gvimrc:
mv ~/.vimrc ~/.vimrc.old
ln -s ~/.vim/vimrc ~/.vimrc
mv ~/.gvimrc ~/.gvimrc.old
ln -s ~/.vim/gvimrc ~/.gvimrcCheck the charset settings of terminal for UTF-8:
locale
export LANG=en_US.UTF-8
export LC_ALL=en_US.UTF-8
export EDITOR=vim
localeYou may try to run a bash scipt to it all:
wget https://raw.githubusercontent.com/adcosta/vimfiles/master/vim-setup.bash
chmod +x vim-setup.bash
./vim-setup.bash
rm vim-setup.bash- http://vimcasts.org/episodes/synchronizing-plugins-with-git-submodules-and-pathogen/
- https://github.com/robertmeta/vimfiles
- https://www.vi-improved.org
- https://github.com/junegunn/vim-plug
I was using Vundle to manage my vim plugins. But recently changed to "Plug". Not really sure if it was a good move!...
Plug commands: :PlugClean :PlugInstall :PlugUpgrade Vundle commands: :PluginInstall :PluginSearch ...
Plug has no search feature integrated and will never have. Author does not see it as a feature (junegunn/vim-plug#186)