From b331ff9bbdd45e4be241d41ec1e1506e84346540 Mon Sep 17 00:00:00 2001 From: Rawley Date: Sun, 3 Apr 2022 16:19:28 +0000 Subject: [PATCH] Update .vimrc --- Vim/.vimrc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Vim/.vimrc b/Vim/.vimrc index f78eae9..f8a96f8 100644 --- a/Vim/.vimrc +++ b/Vim/.vimrc @@ -32,7 +32,6 @@ set ai set number set ts=2 set sw=2 -set t_Co=256 set background=dark set nowrap "Buffer movement, going to go to harpoon soon to try to get away from buffer @@ -58,3 +57,7 @@ if index(fts, &filetype) != -1 endif let g:clojure_fuzzy_indent = 1 let g:clojure_align_subforms = 1 +"Fix weird background color issues with dracula +if &term =~ '256color' + set t_ut= +endif