aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorMax Christian Pohle2016-05-10 11:35:55 +0200
committerMax Christian Pohle2016-05-10 11:35:55 +0200
commit2d63c52bce7c800852406c0bfae02f762fd99721 (patch)
tree7d1cb438491262f2913a5f626602fd79b26900ea /doc
parent4336590d17053f35a1ec74ea8ca555d9f2ed9eee (diff)
downloadvim-2d63c52bce7c800852406c0bfae02f762fd99721.tar.bz2
vim-2d63c52bce7c800852406c0bfae02f762fd99721.zip
got rid of the 'plugins' folder
instead using the default name 'bundle' now
Diffstat (limited to 'doc')
-rw-r--r--doc/INSTALL10
1 files changed, 7 insertions, 3 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)
28cd plugins/YouCompleteMe 28cd bundle/YouCompleteMe
29python2 ./install.py --clang-completer 29python2 ./install.py --clang-completer
30 30
31 31
32# step 7) 32step 7)
33cd bundle/color-coded
34cmake .
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
34mkdir -p .local/share/Thunar/sendto/ 38mkdir -p .local/share/Thunar/sendto/
35cp ~/.vim/gvim-tab.desktop ~/.local/share/Thunar/sendto/ 39cp ~/.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)
39cp ~/.vim/gvim-tab.desktop ~/.local/share/applications/ 43cp ~/.vim/gvim-tab.desktop ~/.local/share/applications/
40update-desktop-database ~/.local/share/applications/ 44update-desktop-database ~/.local/share/applications/
..