summary refs log tree commit diff
path: root/.vim/lua/plugins
diff options
context:
space:
mode:
authorRobert Günzler <r@gnzler.io>2021-05-31 16:52:18 +0200
committerRobert Günzler <r@gnzler.io>2021-05-31 16:56:02 +0200
commita7906b1e3a38253a36cb483f1bac846860b915f5 (patch)
treeb7b126283b8d34f857f202e83b50e37838302102 /.vim/lua/plugins
parent432ee98837b67007a950355cca2e4a23541b59a1 (diff)
vim: statusline tweaks
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="🞶"})
 -- }}}