1
0
Fork 0

screen is valid for 256 colours too

This commit is contained in:
Von Random 2015-01-12 18:06:13 +03:00
parent a333f045ea
commit 8845a30715

2
vimrc
View file

@ -27,7 +27,7 @@ set foldmethod=marker
set noerrorbells visualbell t_vb=
" enforce 256 colours for ssh connections and VTE
if $TERM == 'xterm' || exists("$SSH_CLIENT")
if $TERM == 'xterm' || $TERM == 'screen' || exists("$SSH_CLIENT")
let &t_Co=256
endif