summaryrefslogtreecommitdiffstats
path: root/.config/nvim/lua/user/lsp/common.lua
diff options
context:
space:
mode:
Diffstat (limited to '.config/nvim/lua/user/lsp/common.lua')
-rw-r--r--.config/nvim/lua/user/lsp/common.lua3
1 files changed, 2 insertions, 1 deletions
diff --git a/.config/nvim/lua/user/lsp/common.lua b/.config/nvim/lua/user/lsp/common.lua
index 91a663c..4358e2d 100644
--- a/.config/nvim/lua/user/lsp/common.lua
+++ b/.config/nvim/lua/user/lsp/common.lua
@@ -8,8 +8,9 @@ end
define_sign({name = "DiagnosticSignError", text = '', hl = 'ErrorMsg'})
define_sign({name = "DiagnosticSignWarn", text = '', hl = 'IncSearch'})
-define_sign({name = "DiagnosticSignHint", text = '', hl = 'Search'})
+-- define_sign({name = "DiagnosticSignHint", text = '', hl = 'Search'})
-- define_sign({name = "DiagnosticSignInfo", text = ''})
+vim.fn.sign_define("DiagnosticSignHint", { texthl="DiagnosticSignHint", linehl = "Ignore", text = "", numhl = 'TermCursor' })
vim.fn.sign_define("DiagnosticSignInfo", { texthl="Ignore", text = "", numhl = 'TermCursor' })
vim.diagnostic.config{