From e51617c0818dab1121deb783081688e54a31c3e3 Mon Sep 17 00:00:00 2001 From: gryf Date: Fri, 5 Jun 2020 10:38:42 +0200 Subject: [PATCH] Removed forcing 256 colors. In the past, there was an issue with detecting color capabilities on different terminal types. It's working now. --- vimrc | 4 ---- 1 file changed, 4 deletions(-) diff --git a/vimrc b/vimrc index edd87fb..e83af91 100644 --- a/vimrc +++ b/vimrc @@ -414,14 +414,10 @@ autocmd FileType gitcommit call SetGitcommitSettings() " }}} "TERMINAL: options for terminal emulators {{{ if $TERM == 'rxvt-unicode-256color' || $TERM == 'xterm' - "Enable 256 colors support - set t_Co=256 "repair urxvt ctrl+pgup/down behaviour map [5^ map [6^ elseif $TERM == 'screen' || $TERM == 'screen-256color' - set term=screen-256color "Set terminal type - set t_Co=256 "Enable 256 colors support set t_kN=[6;*~ set t_kP=[5;*~ endif