aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/INSTALL10
-rw-r--r--vimrc4
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)
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/
diff --git a/vimrc b/vimrc
index e03c5e1..e57b242 100644
--- a/vimrc
+++ b/vimrc
@@ -3,8 +3,8 @@
3" Vundle: plugin manager... 3" Vundle: plugin manager...
4set nocompatible | " do not try to be vi, be vim (required by Vundle) 4set nocompatible | " do not try to be vi, be vim (required by Vundle)
5filetype off | " Vundle needs this 5filetype off | " Vundle needs this
6set rtp+=~/.vim/plugins/Vundle.vim | " set runtimepath (required by Vundle) 6set rtp+=~/.vim/bundle/Vundle.vim | " set runtimepath (required by Vundle)
7call vundle#begin('~/.vim/plugins/') | " location where Vundle searches&installs plugins 7call vundle#begin('~/.vim/bundle/') | " location where Vundle searches&installs plugins
8 8
9" Plugin dependant configurations... 9" Plugin dependant configurations...
10Plugin 'VundleVim/Vundle.vim' | " Vundle itself (required) 10Plugin 'VundleVim/Vundle.vim' | " Vundle itself (required)
..