Fix vim initial bg colour setting

This commit is contained in:
Talia 2023-05-08 15:51:51 +02:00
parent cd4fd1faf6
commit 22d1b2fc45
1 changed files with 6 additions and 2 deletions

View File

@ -5,8 +5,12 @@ function! s:kitty_bg_color()
if $TERM=="xterm-kitty" || $KITTY_LISTEN_ON != "" if $TERM=="xterm-kitty" || $KITTY_LISTEN_ON != ""
let l:num_color=synIDattr(hlID("normal"), "bg") let l:num_color=synIDattr(hlID("normal"), "bg")
if l:num_color!="" if l:num_color!=""
let l:color=system("kitty @ --to $KITTY_LISTEN_ON get-colors | grep 'color".l:num_color."'") if match(l:num_color, "^\\d\\{3}$")==0
let l:color=l:color[match(l:color, "#"):] let l:color=system("kitty @ --to $KITTY_LISTEN_ON get-colors | grep 'color".l:num_color."'")
let l:color=l:color[match(l:color, "#"):]
elseif match(l:num_color, "^#\\x\\{6}$")==0
let l:color=l:num_color
end
call system('kitty @ --to $KITTY_LISTEN_ON set-colors background="'.l:color.'"') call system('kitty @ --to $KITTY_LISTEN_ON set-colors background="'.l:color.'"')
call system("cat ".$HOME."/darkrc/kitty_".&bg.".conf | grep cursor | sed -e 's/ /=/' | xargs -L 1 kitty @ --to $KITTY_LISTEN_ON set-colors") call system("cat ".$HOME."/darkrc/kitty_".&bg.".conf | grep cursor | sed -e 's/ /=/' | xargs -L 1 kitty @ --to $KITTY_LISTEN_ON set-colors")
end end