compatibility for non-unicode shit
This commit is contained in:
parent
d5ecb4a96d
commit
6804f0e295
1 changed files with 2 additions and 1 deletions
3
vimrc
3
vimrc
|
@ -26,7 +26,6 @@ set clipboard=exclude:.*
|
||||||
set statusline=%F%m%r%h%w\ [FORMAT=%{&ff}]\ [TYPE=%Y]\ [POS=%04l,%04v][%p%%]\ [LEN=%L]
|
set statusline=%F%m%r%h%w\ [FORMAT=%{&ff}]\ [TYPE=%Y]\ [POS=%04l,%04v][%p%%]\ [LEN=%L]
|
||||||
|
|
||||||
set list
|
set list
|
||||||
set listchars=tab:→\ ,trail:•,nbsp:×
|
|
||||||
|
|
||||||
" set indentation options for specific file types
|
" set indentation options for specific file types
|
||||||
autocmd FileType ruby setlocal sts=2 sw=2 expandtab
|
autocmd FileType ruby setlocal sts=2 sw=2 expandtab
|
||||||
|
@ -48,9 +47,11 @@ endif
|
||||||
|
|
||||||
" set color scheme depending on the terminal capabilities
|
" set color scheme depending on the terminal capabilities
|
||||||
if &t_Co > 88 || has("gui_running")
|
if &t_Co > 88 || has("gui_running")
|
||||||
|
set listchars=tab:→\ ,trail:•,nbsp:×
|
||||||
colorscheme solarized
|
colorscheme solarized
|
||||||
let g:solarized_italic=0
|
let g:solarized_italic=0
|
||||||
else
|
else
|
||||||
|
set listchars=tab:|\ ,trail:*,nbsp:x
|
||||||
colorscheme elflord
|
colorscheme elflord
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue