diff options
author | Max Christian Pohle | 2017-05-02 11:59:34 +0200 |
---|---|---|
committer | Max Christian Pohle | 2017-05-02 11:59:34 +0200 |
commit | 828b6dc5e484e46a78a1b8b973e357c09d678bc7 (patch) | |
tree | 642a94b4fd12020b8e486d6bcf0caee55f810a2f | |
parent | 25a9f9ad3e2481f21f9d0c2fa749258ae206b322 (diff) | |
download | vim-828b6dc5e484e46a78a1b8b973e357c09d678bc7.tar.bz2 vim-828b6dc5e484e46a78a1b8b973e357c09d678bc7.zip |
found a less disturbing utf-8 char for tabs
-rw-r--r-- | vimrc | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -21,7 +21,7 @@ Plug 'airblade/vim-rooter' | " makes :lcd changes to | |||
21 | 21 | ||
22 | nnoremap <F12> :ToggleBufExplorer<CR> | 22 | nnoremap <F12> :ToggleBufExplorer<CR> |
23 | nnoremap <F2> :ScratchPreview<CR> | 23 | nnoremap <F2> :ScratchPreview<CR> |
24 | nnoremap <F6> :syntax sync fromstart<CR>|:nohlsearch | 24 | nnoremap <F6> :syntax sync fromstart<CR>:nohlsearch<CR> |
25 | 25 | ||
26 | 26 | ||
27 | " AIRLINE: ===========================================. | 27 | " AIRLINE: ===========================================. |
@@ -314,9 +314,9 @@ if has("multi_byte") | |||
314 | set listchars+=extends:» | " symbols used when using :set list (which displays non-printable chars) | 314 | 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) | 315 | set listchars+=precedes:« | " symbols used when using :set list (which displays non-printable chars) |
316 | 316 | ||
317 | set listchars+=tab:▸\ | " symbols used when using :set list (which displays non-printable chars) | 317 | 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) | 318 | 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) | 319 | " 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) | 320 | " set listchars+=space:· | " symbols used when using :set list (which displays non-printable chars) |
321 | set showbreak+=› | " symbol used in the beginning of a wrapped line | 321 | set showbreak+=› | " symbol used in the beginning of a wrapped line |
322 | set list | 322 | set list |