Skip to content

Commit

Permalink
modify install.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
nokia authored and nokia committed Nov 19, 2014
1 parent 7c08064 commit 5eb34ef
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
12 changes: 11 additions & 1 deletion install.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
git clone https://github.com/gmarik/Vundle.vim.git ~/.vim/bundle/Vundle.vim
if [ -f ~/.vimrc ]; then
echo "no ~/.vimrc"
else
cp ~/.vim/vimrc ~/.vimrc
fi

if [ -d ~/.vim/bundle/Vundle.vim ]; then
echo "vundle is already installed"
else
git clone https://github.com/gmarik/Vundle.vim.git ~/.vim/bundle/Vundle.vim
fi
vim +PluginInstall +qall
#clang_complete
#apt-get install libclang-dev
1 change: 1 addition & 0 deletions vimrc
Original file line number Diff line number Diff line change
Expand Up @@ -73,3 +73,4 @@ nnoremap <silent> <F3> :NERDTreeTabsToggle<CR>
nnoremap <silent> <F8> <C-W>w
"nnoremap <silent> <F12> :Tlist <CR>
nnoremap <silent> <F12> :TagbarToggle<CR>
"map <F10> :!ctags -R --c++-kinds=+p --fields=+iaS --extra=+q .<CR>

0 comments on commit 5eb34ef

Please sign in to comment.