summary refs log tree commit diff
path: root/.vim/lua/plugins
diff options
context:
space:
mode:
Diffstat (limited to '.vim/lua/plugins')
-rw-r--r--.vim/lua/plugins/_lsp.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/.vim/lua/plugins/_lsp.lua b/.vim/lua/plugins/_lsp.lua
index 9a1a0bb..e8ca981 100644
--- a/.vim/lua/plugins/_lsp.lua
+++ b/.vim/lua/plugins/_lsp.lua
@@ -91,8 +91,8 @@ end
 -- }}}
 
 -- configure signs {{{
-vim.fn.sign_define("LspDiagnosticsSignError", {text="⚡"})
-vim.fn.sign_define("LspDiagnosticsSignWarning", {text="⯈"})
+vim.fn.sign_define("LspDiagnosticsSignError", {text="⚡", numhl="Error"})
+vim.fn.sign_define("LspDiagnosticsSignWarning", {text="⯈", numhl="Warning"})
 vim.fn.sign_define("LspDiagnosticsSignInformation", {text="≈"})
 vim.fn.sign_define("LspDiagnosticsSignHint", {text="🞶"})
 -- }}}