dotfiles

Personal dotfiles
git clone https://git.bracken.jp/dotfiles.git
Log | Files | Refs | LICENSE

commit 09c8a4cc19d536e8273f310ce8f73040df977875
parent df8aad409c50bcca981d2740917b9137a3819eb5
Author: Chris Bracken <chris@bracken.jp>
Date:   Fri,  5 Jan 2024 15:34:40 -0800

Eliminate guibg colours

I only ever use vim in the terminal, so these aren't adding much value.

Diffstat:
M.vim/vimrc | 8++++----
1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/.vim/vimrc b/.vim/vimrc @@ -74,8 +74,8 @@ set softtabstop=2 " Number of spaces per tab when editing. set expandtab " Insert spaces in place of tabs. " Configure whitespace highlighting. -let g:spacehi_spacecolor="ctermbg=red guibg=red" -let g:spacehi_tabcolor="ctermbg=red guibg=red" +let g:spacehi_spacecolor="ctermbg=red" +let g:spacehi_tabcolor="ctermbg=red" " Configure tag file locations. set tags+=~/.local/tags/system.tags @@ -113,8 +113,8 @@ if &t_Co > 2 " Highlight cursor line, max column. set cursorline - hi ColorColumn guibg=grey24 ctermbg=235 - hi CursorLine guibg=grey24 ctermbg=235 cterm=bold + hi ColorColumn ctermbg=235 + hi CursorLine ctermbg=235 cterm=bold hi CursorLineNr ctermbg=235 cterm=bold if has("autocmd")