Add some plugins to vim.

This commit is contained in:
2014-04-17 19:38:16 +02:00
parent b17d1e139b
commit f463e07358

View File

@@ -62,7 +62,16 @@ Bundle 'tpope/vim-speeddating'
" git integration
Bundle 'tpope/vim-fugitive'
set t_Co=16
" buffer expolorer
Bundle 'fholgado/minibufexpl.vim'
" shows a code outline
Bundle 'majutsushi/tagbar'
" automatically enables completion when typing
Bundle 'vim-scripts/autocomplpop'
set t_Co=256
" setup for the solarized color theme
set background=dark
@@ -256,6 +265,8 @@ nnoremap <C-l> <C-w>l
nnoremap <F3> :NERDTreeToggle<CR>
map <F4> :MBEToggle<CR>
" Autosave views when closing and restoring when opening again.
autocmd BufWinLeave *.* mkview
autocmd BufWinEnter *.* silent loadview