From 8845a30715932a8419ac27522db73a92225de105 Mon Sep 17 00:00:00 2001 From: Von Random Date: Mon, 12 Jan 2015 18:06:13 +0300 Subject: [PATCH] screen is valid for 256 colours too --- vimrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vimrc b/vimrc index 6b34f62..c675893 100644 --- a/vimrc +++ b/vimrc @@ -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