summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lua/no-clown-fiesta/groups/highlights.lua3
-rw-r--r--lua/no-clown-fiesta/groups/treesitter.lua2
2 files changed, 4 insertions, 1 deletions
diff --git a/lua/no-clown-fiesta/groups/highlights.lua b/lua/no-clown-fiesta/groups/highlights.lua
index 65d1ca0..ff5fda0 100644
--- a/lua/no-clown-fiesta/groups/highlights.lua
+++ b/lua/no-clown-fiesta/groups/highlights.lua
@@ -51,6 +51,9 @@ function M.highlight(palette, opts)
WarningMsg = { fg = palette.error, bg = palette.bg },
DiffAdd = { bg = palette.accent_green },
DiffText = { bg = palette.accent_blue },
+ Changed = {
+ fg = palette.sign_change,
+ },
DiffChange = {
fg = palette.sign_change,
bg = palette.accent_blue,
diff --git a/lua/no-clown-fiesta/groups/treesitter.lua b/lua/no-clown-fiesta/groups/treesitter.lua
index c6a3c4c..1ee9cec 100644
--- a/lua/no-clown-fiesta/groups/treesitter.lua
+++ b/lua/no-clown-fiesta/groups/treesitter.lua
@@ -69,7 +69,7 @@ function M.highlight(palette, opts)
["@tag"] = { fg = palette.blue },
["@tag.attribute"] = { fg = palette.white },
["@tag.delimiter"] = { fg = palette.white },
- ["@text.uri"] = {fg = palette.medium_gray_blue },
+ ["@text.uri"] = { fg = palette.medium_gray_blue },
["@type"] = vim.tbl_extend("force", { fg = palette.white }, opts.styles.type),
["@type.builtin"] = { fg = palette.white },
["@variable"] = vim.tbl_extend(