From aa237a623e77cff40bd2197f348982f618701757 Mon Sep 17 00:00:00 2001 From: "flyingscorpio@arch-desktop" Date: Thu, 30 Apr 2020 11:22:24 +0200 Subject: [PATCH] Disable BCE in vim --- dotfiles/vim/vimrc | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/dotfiles/vim/vimrc b/dotfiles/vim/vimrc index 5b29823..8dd4c35 100644 --- a/dotfiles/vim/vimrc +++ b/dotfiles/vim/vimrc @@ -112,11 +112,8 @@ let g:airline_theme='badwolf' syntax on -if &term =~ '256color' - " Disable Background Color Erase (BCE) so that color schemes - " work properly when Vim is used inside tmux and GNU screen. - set t_ut= -endif +" Disable BCE (background color erase) +set t_ut= " }}}