[vim] improve status line
This commit is contained in:
parent
b0e08d3e01
commit
61442f5862
1 changed files with 7 additions and 6 deletions
13
vim/vimrc
13
vim/vimrc
|
@ -80,23 +80,24 @@ set nocompatible
|
|||
|
||||
let g:rainbow#pairs = [['(',')'], ['[',']'], ['{','}']]
|
||||
|
||||
" line : col (% of total)
|
||||
let g:airline_section_z = airline#section#create(['%4l:%3v (%p%% of %L)'])
|
||||
if !exists('g:airline_symbols')
|
||||
let g:airline_symbols = {}
|
||||
endif
|
||||
|
||||
let g:airline_left_sep = ' '
|
||||
let g:airline_right_sep = ' '
|
||||
let g:airline_left_alt_sep = ''
|
||||
let g:airline_right_sep = ' '
|
||||
let g:airline_right_alt_sep = ''
|
||||
let g:airline_symbols.crypt = '☢'
|
||||
let g:airline_symbols.crypt = '🔒'
|
||||
let g:airline_symbols.branch = '⎇'
|
||||
let g:airline_symbols.paste = 'Ⓟ'
|
||||
let g:airline_symbols.spell = '✔'
|
||||
let g:airline_symbols.branch = '⎇'
|
||||
let g:airline_symbols.readonly = ' ⃠'
|
||||
let g:airline_symbols.linenr = ''
|
||||
let g:airline_symbols.notexists = '∄'
|
||||
let g:airline_symbols.whitespace = '✗'
|
||||
|
||||
let g:bufferline_echo = 0
|
||||
|
||||
highlight link srecStart Comment
|
||||
highlight link srecType Comment
|
||||
highlight link srecLength WarningMsg
|
||||
|
|
Loading…
Add table
Reference in a new issue