vim

vim config files
git clone https://git.bracken.jp/vim.git
Log | Files | Refs | LICENSE

commit c719e54bff37d396435a58453ca228a2d73f03d3
parent 24fa81d50d409d61b36b77cef7fac79db71a8e24
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:
Mvimrc | 8++++----
1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/vimrc b/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")