1
1
Fork 0

vim: Only use inkpod on 256 color terminal

This commit is contained in:
Jonathan Schleifer 2025-04-12 14:51:38 +00:00
parent 48a11a0e02
commit 6ea16b02d0

View file

@ -23,10 +23,11 @@ if v:version >= 703
end end
set hlsearch set hlsearch
set t_Co=256
set background=dark set background=dark
let g:inkpot_black_background=1 if &t_Co >= 256
colorscheme inkpot let g:inkpot_black_background=1
colorscheme inkpot
end
set cinoptions=+4,(4,u4,w4 set cinoptions=+4,(4,u4,w4
if v:version >= 703 if v:version >= 703