Skip to content

Commit 0fca85d

Browse files
committed
Change unicode symbols in status bar to normal ones
1 parent 0fc11ce commit 0fca85d

File tree

1 file changed

+10
-12
lines changed

1 file changed

+10
-12
lines changed

.vimrc

+10-12
Original file line numberDiff line numberDiff line change
@@ -45,29 +45,22 @@ let g:airline#extensions#tabline#enabled = 1
4545
" Airline theme
4646
let g:airline_theme='deus'
4747

48-
49-
"" air-line
48+
" Airline font symbols
5049
let g:airline_powerline_fonts = 1
51-
"
50+
5251
if !exists('g:airline_symbols')
5352
let g:airline_symbols = {}
5453
endif
5554

56-
57-
" unicode symbols
58-
let g:airline_symbols.paste = 'ρ'
59-
let g:airline_symbols.spell = ''
60-
let g:airline_symbols.notexists = 'Ɇ'
61-
let g:airline_symbols.whitespace = 'Ξ'
62-
6355
" powerline symbols
6456
let g:airline_left_sep = ''
6557
let g:airline_left_alt_sep = ''
6658
let g:airline_right_sep = ''
6759
let g:airline_right_alt_sep = ''
68-
let g:airline_symbols.branch = ''
69-
let g:airline_symbols.readonly = ''
60+
let g:airline_symbols.branch = 'br'
61+
let g:airline_symbols.readonly = 'ro'
7062
let g:airline_symbols.linenr = ''
63+
let g:airline_symbols.maxlinenr = ''
7164

7265
syntax on
7366

@@ -98,8 +91,13 @@ let &t_EI = "\<Esc>[2 q"
9891
" Highlight cursorline
9992
set cursorline
10093
hi CursorLine cterm=NONE ctermbg=0 ctermfg=NONE
94+
95+
" Parentheses highlight color
10196
hi MatchParen cterm=NONE ctermbg=8 ctermfg=magenta
97+
98+
" Folded section color
10299
hi Folded ctermbg=8
100+
103101
" }}}
104102

105103
" Spaces/Tabs {{{

0 commit comments

Comments
 (0)