aboutsummaryrefslogtreecommitdiff
path: root/vimrc
diff options
context:
space:
mode:
authorMax Christian Pohle2017-05-02 11:59:34 +0200
committerMax Christian Pohle2017-05-02 11:59:34 +0200
commit828b6dc5e484e46a78a1b8b973e357c09d678bc7 (patch)
tree642a94b4fd12020b8e486d6bcf0caee55f810a2f /vimrc
parent25a9f9ad3e2481f21f9d0c2fa749258ae206b322 (diff)
downloadvim-828b6dc5e484e46a78a1b8b973e357c09d678bc7.tar.bz2
vim-828b6dc5e484e46a78a1b8b973e357c09d678bc7.zip
found a less disturbing utf-8 char for tabs
Diffstat (limited to 'vimrc')
-rw-r--r--vimrc6
1 files changed, 3 insertions, 3 deletions
diff --git a/vimrc b/vimrc
index e733275..ebd74e9 100644
--- a/vimrc
+++ b/vimrc
@@ -21,7 +21,7 @@ Plug 'airblade/vim-rooter' | " makes :lcd changes to
21 21
22nnoremap <F12> :ToggleBufExplorer<CR> 22nnoremap <F12> :ToggleBufExplorer<CR>
23nnoremap <F2> :ScratchPreview<CR> 23nnoremap <F2> :ScratchPreview<CR>
24nnoremap <F6> :syntax sync fromstart<CR>|:nohlsearch 24nnoremap <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
..