diff options
author | sefidel <contact@sefidel.net> | 2024-05-12 12:38:07 +0900 |
---|---|---|
committer | sefidel <contact@sefidel.net> | 2024-05-12 12:38:07 +0900 |
commit | 49d5cd6cab1f9a70a908b22ade672d79f66a2d48 (patch) | |
tree | 768614e5ca65c24bcb527547836a3d318f4cfbd2 /fnl/nvrc | |
parent | 14c1b93fc50706d834469482a350ab3025f35f28 (diff) | |
download | nvimrc-49d5cd6cab1f9a70a908b22ade672d79f66a2d48.tar.gz nvimrc-49d5cd6cab1f9a70a908b22ade672d79f66a2d48.zip |
fix(colors): fix colour on treesitter
Diffstat (limited to 'fnl/nvrc')
-rw-r--r-- | fnl/nvrc/colors.fnl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fnl/nvrc/colors.fnl b/fnl/nvrc/colors.fnl index 85df856..fba6aa3 100644 --- a/fnl/nvrc/colors.fnl +++ b/fnl/nvrc/colors.fnl @@ -61,6 +61,7 @@ ; Treesitter extensions (highlight! "@text.note" {:fg (. colors :skyblue) :bold true}) (highlight! "@text.warning" {:fg (. colors :yellow) :bold true}) - (highlight! "@text.danger" {:fg (. colors :red) :bold true})) + (highlight! "@text.danger" {:fg (. colors :red) :bold true}) + (highlight! "@variable" {:link :Normal})) colors |