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/interface.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/interface.lua')
| -rw-r--r-- | lua/plugins/interface.lua | 11 |
1 files changed, 6 insertions, 5 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, }, { |
