aboutsummaryrefslogtreecommitdiff
path: root/vimrc
diff options
context:
space:
mode:
Diffstat (limited to 'vimrc')
-rw-r--r--vimrc4
1 files changed, 2 insertions, 2 deletions
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)
..