diff options
| author | Nanderty <psopka@sopka.ch> | 2023-05-21 10:43:27 +0200 |
|---|---|---|
| committer | Nanderty <psopka@sopka.ch> | 2023-05-21 10:43:27 +0200 |
| commit | cac321dd2ef6ca545fdca5545e26048ecff3dfa9 (patch) | |
| tree | ed9d981a914c419bdbb2adb13335ba5c32cb339b /lua/plugins/lsp.lua | |
| parent | fbeb851a8099c9d98de63e643fd3b8fedf15f883 (diff) | |
| download | neovim-config-cac321dd2ef6ca545fdca5545e26048ecff3dfa9.tar.gz neovim-config-cac321dd2ef6ca545fdca5545e26048ecff3dfa9.tar.bz2 neovim-config-cac321dd2ef6ca545fdca5545e26048ecff3dfa9.zip | |
lsp icons
Diffstat (limited to 'lua/plugins/lsp.lua')
| -rw-r--r-- | lua/plugins/lsp.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/plugins/lsp.lua b/lua/plugins/lsp.lua index 31c570b..668a80a 100644 --- a/lua/plugins/lsp.lua +++ b/lua/plugins/lsp.lua @@ -28,7 +28,7 @@ return { }) end, }) - local signs = { Error = " E", Warn = " W", Hint = " H", Info = " I" } + local signs = { Error = " ", Warn = " ", Hint = " ", Info = " " } for type, icon in pairs(signs) do local hl = "DiagnosticSign" .. type vim.fn.sign_define(hl, { text = icon, texthl = hl, numhl = hl }) |
