diff options
author | Max Christian Pohle | 2016-05-10 11:35:55 +0200 |
---|---|---|
committer | Max Christian Pohle | 2016-05-10 11:35:55 +0200 |
commit | 2d63c52bce7c800852406c0bfae02f762fd99721 (patch) | |
tree | 7d1cb438491262f2913a5f626602fd79b26900ea | |
parent | 4336590d17053f35a1ec74ea8ca555d9f2ed9eee (diff) | |
download | vim-karlmarks-2d63c52bce7c800852406c0bfae02f762fd99721.tar.bz2 vim-karlmarks-2d63c52bce7c800852406c0bfae02f762fd99721.zip |
got rid of the 'plugins' folder
instead using the default name 'bundle' now
-rw-r--r-- | doc/INSTALL | 10 | ||||
-rw-r--r-- | 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" | |||
25 | 25 | ||
26 | # step 6) | 26 | # step 6) |
27 | # build YouCompleteMe (if you plan to use it) | 27 | # build YouCompleteMe (if you plan to use it) |
28 | cd plugins/YouCompleteMe | 28 | cd bundle/YouCompleteMe |
29 | python2 ./install.py --clang-completer | 29 | python2 ./install.py --clang-completer |
30 | 30 | ||
31 | 31 | ||
32 | # step 7) | 32 | step 7) |
33 | cd bundle/color-coded | ||
34 | cmake . | ||
35 | |||
36 | # step 8) | ||
33 | # create an entry in file managers right click menu 'open with' allowing you to open the file in a vim tab | 37 | # create an entry in file managers right click menu 'open with' allowing you to open the file in a vim tab |
34 | mkdir -p .local/share/Thunar/sendto/ | 38 | mkdir -p .local/share/Thunar/sendto/ |
35 | cp ~/.vim/gvim-tab.desktop ~/.local/share/Thunar/sendto/ | 39 | cp ~/.vim/gvim-tab.desktop ~/.local/share/Thunar/sendto/ |
36 | 40 | ||
37 | # step 8) | 41 | # step 9) |
38 | # 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) | 42 | # 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) |
39 | cp ~/.vim/gvim-tab.desktop ~/.local/share/applications/ | 43 | cp ~/.vim/gvim-tab.desktop ~/.local/share/applications/ |
40 | update-desktop-database ~/.local/share/applications/ | 44 | update-desktop-database ~/.local/share/applications/ |
@@ -3,8 +3,8 @@ | |||
3 | " Vundle: plugin manager... | 3 | " Vundle: plugin manager... |
4 | set nocompatible | " do not try to be vi, be vim (required by Vundle) | 4 | set nocompatible | " do not try to be vi, be vim (required by Vundle) |
5 | filetype off | " Vundle needs this | 5 | filetype off | " Vundle needs this |
6 | set rtp+=~/.vim/plugins/Vundle.vim | " set runtimepath (required by Vundle) | 6 | set rtp+=~/.vim/bundle/Vundle.vim | " set runtimepath (required by Vundle) |
7 | call vundle#begin('~/.vim/plugins/') | " location where Vundle searches&installs plugins | 7 | call vundle#begin('~/.vim/bundle/') | " location where Vundle searches&installs plugins |
8 | 8 | ||
9 | " Plugin dependant configurations... | 9 | " Plugin dependant configurations... |
10 | Plugin 'VundleVim/Vundle.vim' | " Vundle itself (required) | 10 | Plugin 'VundleVim/Vundle.vim' | " Vundle itself (required) |