Set terminal color options on Linux only

This commit is contained in:
Alex Yatskov 2016-05-27 10:04:36 -07:00
parent ec34f4c28b
commit 69baf99d07

View File

@ -35,7 +35,6 @@ set shortmess+=I
set smartcase set smartcase
set smartcase set smartcase
set smarttab set smarttab
set t_Co=256
set tabstop=4 set tabstop=4
set ttyfast set ttyfast
set wildignore+=*/tmp/* set wildignore+=*/tmp/*
@ -57,6 +56,10 @@ if has('gui_running')
endif endif
endif endif
if has('unix')
set t_Co=256
endif
if &shell =~ 'bin/fish' if &shell =~ 'bin/fish'
set shell=/bin/sh set shell=/bin/sh
endif endif