diff options
| author | srdusr <trevorgray@srdusr.com> | 2023-08-16 23:53:12 +0200 |
|---|---|---|
| committer | srdusr <trevorgray@srdusr.com> | 2023-08-16 23:53:12 +0200 |
| commit | d97d57fd65ca8cfdcd6f0b88097a0b4bb4077a44 (patch) | |
| tree | bb400121dccaa96d5f4bfde1e64ebfc7bf9b677d | |
| parent | cc720cb1b9e0a547577e9a1585be900e7e3966ea (diff) | |
| download | dotfiles-d97d57fd65ca8cfdcd6f0b88097a0b4bb4077a44.tar.gz dotfiles-d97d57fd65ca8cfdcd6f0b88097a0b4bb4077a44.zip | |
Changed error diagnostic sign
| -rw-r--r-- | lua/plugins/lsp.lua | 3 |
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 }) |
