From 52c7651d90a143dddac4d46adfd1c32fcbdadfab Mon Sep 17 00:00:00 2001 From: xfnw Date: Thu, 4 Jan 2024 21:06:08 -0500 Subject: [PATCH] vim: add normal diff colors not sure what upstream vim is doing, but they seem to have changed diff syntax highlighting to have the same color for foreground and background... --- .vim/colors/pablo.vim | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.vim/colors/pablo.vim b/.vim/colors/pablo.vim index 245011f..e725b00 100644 --- a/.vim/colors/pablo.vim +++ b/.vim/colors/pablo.vim @@ -25,4 +25,6 @@ highlight StatusLine ctermfg=11 ctermbg=12 cterm=none guifg=#ffff00 guibg=#0000f highlight Normal guifg=#ffffff guibg=#000000 highlight Search ctermbg=3 guibg=#c0c000 highlight Folded ctermfg=15 ctermbg=8 +highlight DiffAdd ctermfg=10 ctermbg=none +highlight DiffDelete ctermfg=9 ctermbg=none