.vimrc

changeset 739
5c5a80199f95
parent 738
a1db498aea9b
child 742
354f9d473a4b
equal deleted inserted replaced
738:a1db498aea9b 739:5c5a80199f95
151 set hlsearch 151 set hlsearch
152 set ignorecase 152 set ignorecase
153 set smartcase 153 set smartcase
154 154
155 if has('gui_running') || $LANG =~# 'UTF-8' 155 if has('gui_running') || $LANG =~# 'UTF-8'
156 set listchars=tab:⇥·,trail:◼,nbsp:◻,extends:⥂,precedes:⥃ 156 let &listchars = "tab:⇥·,trail:◼,nbsp:◻,extends:»,precedes:«"
157 " eol:↩ not as useful as trail i think 157 let &fillchars = "fold: ,vert:│"
158 set fillchars=fold:∷,vert:│
159 else 158 else
160 set listchars=tab:>-,trail:-,nbsp:%,extends:>,precedes:< 159 let &listchars = "tab:>-,trail:-,nbsp:%,extends:»,precedes:«"
160 let &fillchars = "fold: "
161 endif 161 endif
162 162
163 set linebreak 163 set linebreak
164 set showbreak=»\ 164 let &showbreak = "» "
165 if exists('&breakindent') 165 if exists('&breakindent')
166 set breakindent 166 set breakindent
167 set breakindentopt+=sbr 167 set breakindentopt+=sbr
168 endif 168 endif
169 169
434 434
435 if executable('ag') 435 if executable('ag')
436 let g:unite_source_grep_command = 'ag' 436 let g:unite_source_grep_command = 'ag'
437 let g:unite_source_grep_default_opts = '--nogroup --nocolor --column' 437 let g:unite_source_grep_default_opts = '--nogroup --nocolor --column'
438 let g:unite_source_grep_recursive_opt = '' 438 let g:unite_source_grep_recursive_opt = ''
439 439
440 let g:unite_source_rec_async_command = ['ag', '-f', '--nocolor', '--nogroup', '-g', ''] 440 let g:unite_source_rec_async_command = ['ag', '-f', '--nocolor', '--nogroup', '-g', '']
441 endif 441 endif
442 442
443 ">> vimfiler 443 ">> vimfiler
444 let g:vimfiler_as_default_explorer = 1 444 let g:vimfiler_as_default_explorer = 1

mercurial