diff options
author | justanothercatgirl <sotov2070@gmail.com> | 2024-04-11 13:00:50 +0300 |
---|---|---|
committer | justanothercatgirl <sotov2070@gmail.com> | 2024-04-11 13:00:50 +0300 |
commit | 732e507db3c1664d6d64889b3186df766c9217d4 (patch) | |
tree | 2154441af35257c85a0c1aa33a4a6b9e8c0063d8 /.config/nvim/lua/user/lsp/common.lua | |
parent | dbb48f0acaacede21cfccfb8f30a206236520068 (diff) |
added group-media script
Diffstat (limited to '.config/nvim/lua/user/lsp/common.lua')
-rw-r--r-- | .config/nvim/lua/user/lsp/common.lua | 3 |
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{ |