aboutsummaryrefslogtreecommitdiff
path: root/vimrc
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 /vimrc
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 '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)
..