aboutsummaryrefslogtreecommitdiff
path: root/vimrc
diff options
context:
space:
mode:
authorMax Christian Pohle2017-05-04 21:20:06 +0200
committerMax Christian Pohle2017-05-04 21:20:06 +0200
commit4332157ecf9c7c4ff9470cf739c09f3114dd9728 (patch)
tree742ed4d4f557e2a15a99df01278497a797b760ff /vimrc
parent828b6dc5e484e46a78a1b8b973e357c09d678bc7 (diff)
downloadvim-4332157ecf9c7c4ff9470cf739c09f3114dd9728.tar.bz2
vim-4332157ecf9c7c4ff9470cf739c09f3114dd9728.zip
Replaced tab char again
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)
..