aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/shortcuts.txt5
-rw-r--r--vimrc3
2 files changed, 7 insertions, 1 deletions
diff --git a/doc/shortcuts.txt b/doc/shortcuts.txt
index 2c96bef..3dd389f 100644
--- a/doc/shortcuts.txt
+++ b/doc/shortcuts.txt
@@ -132,6 +132,11 @@ a = toggles display of hidden files
132[filetype:css] 132[filetype:css]
133viB:sort = sort inner block by name 133viB:sort = sort inner block by name
134 134
135[vim commands]
136:for i in range(1,12) | put ='2016-'.i | endfor
137
138[fancy utf-8 symbols]
139
135 140
136[vim modeline] 141[vim modeline]
137filetype can have multiple values, like python.django 142filetype can have multiple values, like python.django
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)
..