diff options
author | Gustaf Rydholm <gustaf@nexure.io> | 2024-07-20 13:38:50 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf@nexure.io> | 2024-07-20 13:38:50 +0200 |
commit | 2d195b02ddc9b21fad8e35a69c567ef5b9935a52 (patch) | |
tree | cad3c302052d2c8f1d94eded79e16c8a9c9a17a4 /lua/no-clown-fiesta/groups | |
parent | 14970a61e8ebade9221c6778e381ab52bf73383c (diff) |
Add Changed group
Diffstat (limited to 'lua/no-clown-fiesta/groups')
-rw-r--r-- | lua/no-clown-fiesta/groups/highlights.lua | 3 | ||||
-rw-r--r-- | lua/no-clown-fiesta/groups/treesitter.lua | 2 |
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( |