fix vim colors - dotfiles - arsenal of config files, ready to be cloned in new (virtual) machines.
HTML git clone git://git.drkhsh.at/dotfiles.git
DIR Log
DIR Files
DIR Refs
DIR Submodules
DIR README
---
DIR commit fc37ded9e9c191a241e20ea9d07d83241fe59bf5
DIR parent f6f8dfa3027d0e02756599716c7eb96fbcd5e6dd
HTML Author: drkhsh <me@drkhsh.at>
Date: Sat, 7 Jan 2023 01:20:32 +0100
fix vim colors
Diffstat:
M vim/.vimrc | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
---
DIR diff --git a/vim/.vimrc b/vim/.vimrc
@@ -8,8 +8,6 @@ filetype plugin indent on
syntax enable
" theme
-set background=dark
-
packadd! dracula
colorscheme dracula
@@ -19,6 +17,10 @@ colorscheme dracula
"colorscheme cyberpunk-neon
"set termguicolors
+" fix background
+set background=dark
+hi Normal guibg=NONE ctermbg=NONE
+
set number
set ruler
set wildmenu
@@ -51,7 +53,7 @@ set cursorline
" color 80 columns limit
set colorcolumn=80
-highlight ColorColumn ctermbg=18
+highlight ColorColumn ctermbg=black
" backspace/cursor keys wrap to previous/next line
set backspace=indent,eol,start