aboutsummaryrefslogtreecommitdiff
path: root/lua/plugins/lsp.lua
diff options
context:
space:
mode:
authorsrdusr <trevorgray@srdusr.com>2023-08-16 23:53:12 +0200
committersrdusr <trevorgray@srdusr.com>2023-08-16 23:53:12 +0200
commitd97d57fd65ca8cfdcd6f0b88097a0b4bb4077a44 (patch)
treebb400121dccaa96d5f4bfde1e64ebfc7bf9b677d /lua/plugins/lsp.lua
parentcc720cb1b9e0a547577e9a1585be900e7e3966ea (diff)
downloaddotfiles-d97d57fd65ca8cfdcd6f0b88097a0b4bb4077a44.tar.gz
dotfiles-d97d57fd65ca8cfdcd6f0b88097a0b4bb4077a44.zip
Changed error diagnostic sign
Diffstat (limited to 'lua/plugins/lsp.lua')
-rw-r--r--lua/plugins/lsp.lua3
1 files changed, 2 insertions, 1 deletions
diff --git a/lua/plugins/lsp.lua b/lua/plugins/lsp.lua
index 4ce5610..5cca919 100644
--- a/lua/plugins/lsp.lua
+++ b/lua/plugins/lsp.lua
@@ -20,7 +20,8 @@ if not vim.g.lsp_setup_done then
end
end
- local signs = { Error = " ", Warn = "▲", Info = "􀅳", Hint = "⚑" }
+ local signs = { Error = " ", Warn = "▲", Info = "􀅳", Hint = "⚑" }
+ -- 
for type, icon in pairs(signs) do
local hl = "DiagnosticSign" .. type
vim.fn.sign_define(hl, { text = icon, texthl = hl, numhl = hl })