From 06ecbe60a018eba596bdeea9190667c72f1832b1 Mon Sep 17 00:00:00 2001 From: DarkWiiPlayer Date: Mon, 26 Jun 2023 09:40:35 +0200 Subject: [PATCH] Change vim colors for light theme --- vim/plugin/colors.vim | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/vim/plugin/colors.vim b/vim/plugin/colors.vim index 8158dbd..306833d 100644 --- a/vim/plugin/colors.vim +++ b/vim/plugin/colors.vim @@ -60,5 +60,9 @@ end if $TERM=="xterm-kitty" || match($TERM, '-256color$') set termguicolors - colorscheme sierra + if &bg=="dark" + colorscheme sierra + else + colorscheme PaperColor + end end