commit 3bf444c4071d4160cbfcffbafcd4bf23e3817c04
parent a22cfeb5675344a7a5cc44dfc69fdc5aafb093db
Author: Anders Damsgaard <anders.damsgaard@geo.au.dk>
Date: Thu, 5 Sep 2013 22:19:16 +0200
fixed Bundle calls
Diffstat:
M | .vimrc | | | 47 | +++++++++++++++++++++++++++++------------------ |
1 file changed, 29 insertions(+), 18 deletions(-)
diff --git a/.vimrc b/.vimrc
@@ -1,13 +1,37 @@
-" Include pathogen plugin manager
-filetype on
+set nocompatible " Disable vi-compatibility
filetype off
-set t_Co=16 " for solarized theme
+
set rtp+=~/.vim/bundle/vundle " use Vundle plugin manager
call vundle#rc()
+
+""" Vundle plugins
+" install and update with :BundleInstall(!), see :h vundle
+
+" let Vundle manage Vundle. Required!
+Bundle 'gmarik/vundle'
+
+" more functional statusline
+Bundle 'Lokaltog/vim-powerline'
+
+" successor to vim-powerline
+"Bundle 'Lokaltog/powerline'
+
+" file system browser
+Bundle 'scrooloose/nerdtree'
+
+" syntax checking plugin
+Bundle 'scrooloose/syntastic'
+
+" fuzzy file, buffer, and tag finder
+Bundle 'kien/ctrlp.vim'
+
+" solarized colorscheme
+Bundle 'altercation/vim-colors-solarized'
+
+
filetype plugin indent on
-" Disable vi-compatibility
-set nocompatible
+set t_Co=16 " for solarized theme
" Enable syntax highligting
syntax on
@@ -61,19 +85,6 @@ else
endif
-""" Vundle plugins
-" install and update with :BundleInstall, see :h vundle
-
-" original repos on Github
-Bundle 'gmarik/vundle' " let Vundle manage Vundle. Required!
-Bundle 'Lokaltog/vim-powerline' " more functional statusline
-"Bundle 'Lokaltog/powerline' " successor to vim-powerline
-Bundle 'scrooloose/nerdtree' " file system browser
-Bundle 'scrooloose/syntastic' " syntax checking plugin
-Bundle 'kien/ctrlp.vim' " fuzzy file, buffer, and tag finder
-Bundle 'altercation/vim-colors-solarized' " solarized colorscheme
-
-
""" Keyboard shortcuts
" Resize with <C-h>, <C-j>, <C-k> and <C-l>