diff --git a/vim/vimrc b/vim/vimrc index b968cb8..23f1faa 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -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 l nnoremap :NERDTreeToggle +map :MBEToggle + " Autosave views when closing and restoring when opening again. autocmd BufWinLeave *.* mkview autocmd BufWinEnter *.* silent loadview