diff options
| author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2021-10-20 08:48:21 +0200 | 
|---|---|---|
| committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2021-10-20 08:48:21 +0200 | 
| commit | 70301470abcc1a96a7c164dbf8901aa6f1e52c12 (patch) | |
| tree | d1f4c4d3562dab74c1b2384399bb86598cfb8ced /.config/nvim/lua/dark | |
| parent | f11eff223d021dd9553a7152278c00ca41b7ef37 (diff) | |
Update to colorscheme, ftplugin
Diffstat (limited to '.config/nvim/lua/dark')
| -rw-r--r-- | .config/nvim/lua/dark/Treesitter.lua | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/.config/nvim/lua/dark/Treesitter.lua b/.config/nvim/lua/dark/Treesitter.lua index e644b8b..3c2b294 100644 --- a/.config/nvim/lua/dark/Treesitter.lua +++ b/.config/nvim/lua/dark/Treesitter.lua @@ -1,6 +1,6 @@  local Treesitter = {    TSComment = { fg = C.gray }, -  TSAnnotation = { fg = C.purple }, +  TSAnnotation = { fg = C.gray_blue },    TSAttribute = { fg = C.white },    TSConstructor = { fg = C.orange },    TSType = { fg = C.orange }, @@ -20,9 +20,9 @@ local Treesitter = {    TSBoolean = { fg = C.blue },    TSCharacter = { fg = C.light_green },    TSError = { fg = C.error_red }, -  TSFunction = { fg = C.purple }, -  TSFuncBuiltin = { fg = C.purple }, -  TSMethod = { fg = C.purple }, +  TSFunction = { fg = C.gray_blue }, +  TSFuncBuiltin = { fg = C.gray_blue }, +  TSMethod = { fg = C.gray_blue },    TSConstMacro = { fg = C.orange },    TSFuncMacro = { fg = C.orange },    TSVariable = { fg = C.white },  |