Skip to content

Commit

Permalink
Solve problems with MiniBufExpl: remove it and activate airline#tabli…
Browse files Browse the repository at this point in the history
…ne, change F2 F3 F4 mappings to standard vim buffers actions
  • Loading branch information
mcagl committed Aug 30, 2015
1 parent 33f6462 commit 8990d7d
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions vimrc
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ NeoBundle 'jelera/vim-javascript-syntax'
NeoBundle 'davidhalter/jedi-vim'
NeoBundle 'mcagl/vim-licenses'
NeoBundle 'Valloric/MatchTagAlways'
NeoBundle 'fholgado/minibufexpl.vim'
NeoBundle 'scrooloose/nerdcommenter'
NeoBundle 'scrooloose/nerdtree'
NeoBundle 'alfredodeza/pytest.vim'
Expand Down Expand Up @@ -181,6 +180,7 @@ let g:airline_exclude_filenames=[]
let g:airline_exclude_filetypes=[]
let g:airline#extensions#syntastic#enabled = 1
let g:airline#extensions#branch#enabled = 1
let g:airline#extensions#tabline#enabled = 1

" Add the following snippet to your vimrc to escape insert mode immediately
if ! has('gui_running')
Expand Down Expand Up @@ -253,12 +253,9 @@ let g:ctrlp_custom_ignore = {
\ 'link': 'django$',
\ }

" MiniBufExpl remappings
" F2 go to the previous buffer, F3 go to the next buffer
" F4 closes active buffer
map <F2> :MBEbp<CR>
map <F3> :MBEbn<CR>
map <F4> :MBEbd<CR>
map <F2> :bprevious<CR>
map <F3> :bnext<CR>
map <F4> :bdelete<CR>
" Enable omni completion.
autocmd FileType css setlocal omnifunc=csscomplete#CompleteCSS
Expand Down

0 comments on commit 8990d7d

Please sign in to comment.