From 6804f0e2955793a600ba982bbd5a0df6bdfcaa84 Mon Sep 17 00:00:00 2001 From: Von Random Date: Tue, 14 Oct 2014 19:42:41 +0400 Subject: [PATCH] compatibility for non-unicode shit --- vimrc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/vimrc b/vimrc index 67f39a5..b85c216 100644 --- a/vimrc +++ b/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 list -set listchars=tab:→\ ,trail:•,nbsp:× " set indentation options for specific file types autocmd FileType ruby setlocal sts=2 sw=2 expandtab @@ -48,9 +47,11 @@ endif " set color scheme depending on the terminal capabilities if &t_Co > 88 || has("gui_running") + set listchars=tab:→\ ,trail:•,nbsp:× colorscheme solarized let g:solarized_italic=0 else + set listchars=tab:|\ ,trail:*,nbsp:x colorscheme elflord endif