plugins - Load vim-airline and themes
This commit is contained in:
parent
03ae895e9e
commit
73003b1e0d
7 changed files with 19 additions and 12 deletions
|
@ -1,3 +0,0 @@
|
|||
NeoBundle 'vim-airline/vim-airline-themes' , {
|
||||
\ 'depends' : [ 'bling/vim-airline' ]
|
||||
\ }
|
|
@ -1,6 +0,0 @@
|
|||
let g:airline_powerline_fonts = 1 " Use really lovely patched fonts
|
||||
let g:airline#extensions#tabline#enabled = 1 " Show buffers / tabs at the top
|
||||
let g:airline#extensions#tabline#formatter = 'unique_tail_improved' " Buffer name formatter
|
||||
let g:airline#extensions#tabline#show_buffers = 1
|
||||
let g:airline#extensions#tabline#show_tabs = 1
|
||||
set laststatus=2 " Always show status line
|
|
@ -1,3 +0,0 @@
|
|||
NeoBundle 'bling/vim-airline' , {
|
||||
\ 'depends' : [ 'ctrlpvim/ctrlp.vim' ]
|
||||
\ }
|
4
plugins/vim-airline-themes.load.vim
Normal file
4
plugins/vim-airline-themes.load.vim
Normal file
|
@ -0,0 +1,4 @@
|
|||
call dein#add('vim-airline/vim-airline-themes', #{
|
||||
\ lazy: 1,
|
||||
\ on_event: 'VimEnter',
|
||||
\ })
|
12
plugins/vim-airline.cfg.vim
Normal file
12
plugins/vim-airline.cfg.vim
Normal file
|
@ -0,0 +1,12 @@
|
|||
" Use powerline fonts
|
||||
let g:airline_powerline_fonts = 1
|
||||
" Show buffers / tabs at the top
|
||||
let g:airline#extensions#tabline#enabled = 1
|
||||
" Buffer name formatter
|
||||
let g:airline#extensions#tabline#formatter = 'unique_tail_improved'
|
||||
" Show the list of buffers
|
||||
let g:airline#extensions#tabline#show_buffers = 1
|
||||
" Show the list of tabs
|
||||
let g:airline#extensions#tabline#show_tabs = 1
|
||||
" Always show status line
|
||||
set laststatus=2
|
3
plugins/vim-airline.load.vim
Normal file
3
plugins/vim-airline.load.vim
Normal file
|
@ -0,0 +1,3 @@
|
|||
call dein#add('bling/vim-airline', #{
|
||||
\ lazy: 1,
|
||||
\ })
|
Loading…
Reference in a new issue