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 | |
| 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')
| -rw-r--r-- | lua/plugins/interface.lua | 11 | ||||
| -rw-r--r-- | lua/plugins/lsp.lua | 2 |
2 files changed, 7 insertions, 6 deletions
diff --git a/lua/plugins/interface.lua b/lua/plugins/interface.lua index f546f1e..f5009f6 100644 --- a/lua/plugins/interface.lua +++ b/lua/plugins/interface.lua @@ -15,10 +15,10 @@ return { { 'diagnostics', symbols = { - error = 'E', - warn = 'W', - info = 'I', - hint = 'H' + error = ' ', + warn = ' ', + hint = ' ', + info = ' ', }, }, }, @@ -47,7 +47,8 @@ return { config = function(_, opts) require('lualine').setup(opts) vim.api.nvim_set_hl(0, 'StatusLine', { bg = require('monokai-pro.colorscheme').colors.editor.background }) - vim.api.nvim_set_hl(0, 'StatusLineNC', { bg = require('monokai-pro.colorscheme').colors.editor.backgroundnil }) + vim.api.nvim_set_hl(0, 'StatusLineNC', + { bg = require('monokai-pro.colorscheme').colors.editor.backgroundnil }) end, }, { 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 }) |
