aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/nvim/.config
diff options
context:
space:
mode:
authorToby Vincent <tobyv13@gmail.com>2022-10-31 16:37:42 -0500
committerToby Vincent <tobyv13@gmail.com>2022-10-31 16:37:42 -0500
commit849f825dcf5f2fe1e8dd518aa1f8f151f24a8afb (patch)
tree98875e80c003b4336a862a5c9d3e64a7d059fb5d /nvim/.config
parent71cde9273372ffe056c8e047511724de44bcf705 (diff)
fix(nvim): add workaround for incorrect highlights in lsp.hover
Diffstat (limited to 'nvim/.config')
-rw-r--r--nvim/.config/nvim/lua/tobyvin/plugins/gruvbox.lua4
1 files changed, 4 insertions, 0 deletions
diff --git a/nvim/.config/nvim/lua/tobyvin/plugins/gruvbox.lua b/nvim/.config/nvim/lua/tobyvin/plugins/gruvbox.lua
index 4637b82..1a84ac4 100644
--- a/nvim/.config/nvim/lua/tobyvin/plugins/gruvbox.lua
+++ b/nvim/.config/nvim/lua/tobyvin/plugins/gruvbox.lua
@@ -31,6 +31,10 @@ M.setup = function()
StatusLineNC = { fg = colors.light4, bg = colors.dark1, reverse = false },
WinBar = { link = "StatusLineNC" },
WinBarNC = { fg = colors.light4, bg = "" },
+
+ -- TODO: workaround for weird highlights in lsp hover/signature
+ -- SEE: https://github.com/neovim/neovim/issues/13746
+ markdownError = { link = "Normal" },
},
transparent_mode = true,
})