From 2d63c52bce7c800852406c0bfae02f762fd99721 Mon Sep 17 00:00:00 2001 From: Max Christian Pohle Date: Tue, 10 May 2016 11:35:55 +0200 Subject: got rid of the 'plugins' folder instead using the default name 'bundle' now --- doc/INSTALL | 10 +++++++--- vimrc | 4 ++-- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/doc/INSTALL b/doc/INSTALL index 50a2f08..18a158a 100644 --- a/doc/INSTALL +++ b/doc/INSTALL @@ -25,16 +25,20 @@ vim -c ":set spell" # step 6) # build YouCompleteMe (if you plan to use it) -cd plugins/YouCompleteMe +cd bundle/YouCompleteMe python2 ./install.py --clang-completer -# step 7) +step 7) +cd bundle/color-coded +cmake . + +# step 8) # create an entry in file managers right click menu 'open with' allowing you to open the file in a vim tab mkdir -p .local/share/Thunar/sendto/ cp ~/.vim/gvim-tab.desktop ~/.local/share/Thunar/sendto/ -# step 8) +# step 9) # add gvim functionality to thunar, so that sendto can be used to open a file in an existing vim instance (as a tab in this case) cp ~/.vim/gvim-tab.desktop ~/.local/share/applications/ update-desktop-database ~/.local/share/applications/ diff --git a/vimrc b/vimrc index e03c5e1..e57b242 100644 --- a/vimrc +++ b/vimrc @@ -3,8 +3,8 @@ " Vundle: plugin manager... set nocompatible | " do not try to be vi, be vim (required by Vundle) filetype off | " Vundle needs this -set rtp+=~/.vim/plugins/Vundle.vim | " set runtimepath (required by Vundle) -call vundle#begin('~/.vim/plugins/') | " location where Vundle searches&installs plugins +set rtp+=~/.vim/bundle/Vundle.vim | " set runtimepath (required by Vundle) +call vundle#begin('~/.vim/bundle/') | " location where Vundle searches&installs plugins " Plugin dependant configurations... Plugin 'VundleVim/Vundle.vim' | " Vundle itself (required) -- cgit v1.2.3