From 6a3bcb04664c82e4a053f8f236ca98783ac0d64e Mon Sep 17 00:00:00 2001 From: juniorsundar-tii <149654705+juniorsundar-tii@users.noreply.github.com> Date: Sat, 3 Aug 2024 18:19:51 +0400 Subject: [PATCH 1/2] fix(kitty.conf): base16 correction on brights (color8) If color0 and color8 are the same, the zsh-autosuggestions are the same colour as the background making it difficult to read. I used the wezterm config as reference and found that the color8 used in this config was incorrect thus fixed. --- extras/kitty/cyberdream.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extras/kitty/cyberdream.conf b/extras/kitty/cyberdream.conf index 33d2dd6..75509b2 100644 --- a/extras/kitty/cyberdream.conf +++ b/extras/kitty/cyberdream.conf @@ -5,7 +5,7 @@ cursor #ffffff cursor_text_color #16181a selection_background #3c4048 color0 #16181a -color8 #16181a +color8 #3c4048 color1 #ff6e5e color9 #ff6e5e color2 #5eff6c From 93ad02696e63c8565d62574d4fec7972204b9d0d Mon Sep 17 00:00:00 2001 From: juniorsundar-tii <149654705+juniorsundar-tii@users.noreply.github.com> Date: Sat, 3 Aug 2024 23:16:19 +0400 Subject: [PATCH 2/2] fix(kitty.lua): base16 correction in the right location this time Edited kitty.lua so that it won't overwrite the .conf file. --- lua/cyberdream/extra/kitty.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/cyberdream/extra/kitty.lua b/lua/cyberdream/extra/kitty.lua index 6269ac5..67934f5 100644 --- a/lua/cyberdream/extra/kitty.lua +++ b/lua/cyberdream/extra/kitty.lua @@ -15,7 +15,7 @@ cursor ${fg} cursor_text_color ${bg} selection_background ${bgHighlight} color0 ${bg} -color8 ${bg} +color8 ${bgHighlight} color1 ${red} color9 ${red} color2 ${green}