aboutsummaryrefslogtreecommitdiff
path: root/vimrc
diff options
context:
space:
mode:
Diffstat (limited to 'vimrc')
-rw-r--r--vimrc3
1 files changed, 2 insertions, 1 deletions
diff --git a/vimrc b/vimrc
index ebd74e9..cca37a8 100644
--- a/vimrc
+++ b/vimrc
@@ -38,6 +38,7 @@ let g:airline#extensions#tabline#show_buffers = 1 |
38let g:airline#extensions#tabline#show_tabs = 0 | 38let g:airline#extensions#tabline#show_tabs = 0 |
39let g:airline#extensions#tagbar#enabled = 0 | 39let g:airline#extensions#tagbar#enabled = 0 |
40let g:airline#extensions#tagbar#flags = 's' 40let g:airline#extensions#tagbar#flags = 's'
41let g:airline#extensions#tagbar#currenttag = 'f'
41let g:airline#extensions#whitespace#enabled = 0 | 42let g:airline#extensions#whitespace#enabled = 0 |
42let g:airline#extensions#wordcount#enabled = 0 | 43let g:airline#extensions#wordcount#enabled = 0 |
43let g:airline_inactive_collapse = 1 | 44let g:airline_inactive_collapse = 1 |
@@ -314,7 +315,7 @@ if has("multi_byte")
314 set listchars+=extends:» | " symbols used when using :set list (which displays non-printable chars) 315 set listchars+=extends:» | " symbols used when using :set list (which displays non-printable chars)
315 set listchars+=precedes:« | " symbols used when using :set list (which displays non-printable chars) 316 set listchars+=precedes:« | " symbols used when using :set list (which displays non-printable chars)
316 317
317 set listchars+=tab:˲\ | " symbols used when using :set list (which displays non-printable chars) 318 set listchars+=tab:\ | " symbols used when using :set list (which displays non-printable chars)
318 set listchars+=trail:· | " symbols used when using :set list (which displays non-printable chars) 319 set listchars+=trail:· | " symbols used when using :set list (which displays non-printable chars)
319 " set listchars+=eol:↲ | " symbols used when using :set list (which displays non-printable chars) 320 " set listchars+=eol:↲ | " symbols used when using :set list (which displays non-printable chars)
320 " set listchars+=space:· | " symbols used when using :set list (which displays non-printable chars) 321 " set listchars+=space:· | " symbols used when using :set list (which displays non-printable chars)
..