summaryrefslogtreecommitdiffstatshomepage
path: root/nvim
diff options
context:
space:
mode:
authorToby Vincent <tobyv13@gmail.com>2023-05-03 15:07:35 -0500
committerToby Vincent <tobyv13@gmail.com>2023-05-03 15:07:35 -0500
commit496175d973fa4118a3bcbe0cabae7139e474239f (patch)
tree07ec78c1f1108ae58ec6fcb2188ca3cf415dead7 /nvim
parent4d09e4e6c3856732de83ad6d419938f0d3dc8723 (diff)
fix(nvim): make LspSemanticHighlight more ...
consistent with Treesitter See: https://github.com/ellisonleao/gruvbox.nvim/pull/255
Diffstat (limited to 'nvim')
-rw-r--r--nvim/.config/nvim/lua/tobyvin/plugins/gruvbox.lua6
1 files changed, 6 insertions, 0 deletions
diff --git a/nvim/.config/nvim/lua/tobyvin/plugins/gruvbox.lua b/nvim/.config/nvim/lua/tobyvin/plugins/gruvbox.lua
index 699fc9a..1a84cea 100644
--- a/nvim/.config/nvim/lua/tobyvin/plugins/gruvbox.lua
+++ b/nvim/.config/nvim/lua/tobyvin/plugins/gruvbox.lua
@@ -17,6 +17,12 @@ local M = {
IndentContext5 = { link = "GruvboxAqua" },
IndentContext6 = { link = "GruvboxBlue" },
IndentContext7 = { link = "GruvboxViolet" },
+
+ -- See: https://github.com/ellisonleao/gruvbox.nvim/pull/255
+ ["@lsp.type.class"] = { link = "@type" },
+ ["@lsp.type.decorator"] = { link = "@macro" },
+ ["@lsp.type.interface"] = { link = "@constructor" },
+ ["@lsp.type.struct"] = { link = "@type" },
},
},
}