Merge commit '068d708cf2824672044e67949a2b9116ba2be81c' as 'vim'

This commit is contained in:
murgi
2017-04-12 10:07:28 +02:00
200 changed files with 28804 additions and 0 deletions

16
vim/README.md Normal file
View File

@@ -0,0 +1,16 @@
# Installing plugins
Open vim and execute `:PluginInstall`, Vundle will do the rest.
To install YouCompleteMe see the YouCompleteMe README after installing plugins
in bundle/YouCompleteMe.
# Colors
Add to .zshrc:
```
if [ -e /usr/share/terminfo/x/xterm-256color ]; then
export TERM='xterm-256color'
else
export TERM='xterm-color'
fi
```
To see all colors open vim and type `:so color.vim` in the .vim directory.