diff options
author | Victor Toso <victortoso@redhat.com> | 2016-02-12 13:46:19 +0100 |
---|---|---|
committer | Victor Toso <victortoso@redhat.com> | 2016-02-12 13:46:19 +0100 |
commit | 491311365d603b6d06378b0dfe071ed94d4062d5 (patch) | |
tree | 7d593442854b1c249da7e9e2ef35fe06575ef820 /vim | |
parent | 9476305c6cd16dd2bf2f5eb5b4fe9b8dd63cce40 (diff) |
vim: add a README to bundle as helper
Diffstat (limited to 'vim')
-rw-r--r-- | vim/bundle/.gitignore | 1 | ||||
-rw-r--r-- | vim/bundle/README | 30 |
2 files changed, 31 insertions, 0 deletions
diff --git a/vim/bundle/.gitignore b/vim/bundle/.gitignore new file mode 100644 index 0000000..79f8065 --- /dev/null +++ b/vim/bundle/.gitignore @@ -0,0 +1 @@ +vundle diff --git a/vim/bundle/README b/vim/bundle/README new file mode 100644 index 0000000..118dc06 --- /dev/null +++ b/vim/bundle/README @@ -0,0 +1,30 @@ +############################################################################### +# VUNDLE ###################################################################### +############################################################################### +https://github.com/VundleVim/Vundle.vim#quick-start + +git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim + +* It should be enough with my vimrc in place +* then :PluginInstall in vim buffer + +############################################################################### +# COLOR CODED ################################################################# +############################################################################### +https://github.com/jeaye/color_coded#all + +cd ~/.vim/bundle/color_coded +mkdir build && cd build +cmake .. +make && make install # Compiling with GCC is preferred, ironically +# Clang works on OS X, but has mixed success on Linux and the BSDs + +# Cleanup afterward; frees several hundred megabytes +make clean && make clean_clang + +############################################################################### +# YOU COMPLETE ME ############################################################# +############################################################################### +https://github.com/Valloric/YouCompleteMe#fedora-linux-x64-installation + +cd ~/.vim/bundle/YouCompleteMe && ./install.py --clang-completer |