From 8e6499d09c752175fc7f144036dbee7affcfe946 Mon Sep 17 00:00:00 2001 From: Anthony Perkins Date: Fri, 8 Apr 2022 20:46:31 +0100 Subject: [PATCH] Switch terminal Vim to dark --- vimrc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/vimrc b/vimrc index 8bb332e..fea1826 100644 --- a/vimrc +++ b/vimrc @@ -52,7 +52,7 @@ set textwidth=80 " Suggestions: 72, 80, 100 " All other settings. set autoindent set autoread -set background=dark +set background=light set backspace=indent,eol,start set cmdheight=1 set colorcolumn=73,81 @@ -143,8 +143,8 @@ if has('eval') colorscheme tempus_night else " Light for all other consoles. - set background=light - colorscheme tempus_totus + set background=dark + colorscheme tempus_night endif endif