aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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
..