summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lua/plugins/interface.lua11
-rw-r--r--lua/plugins/lsp.lua2
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 })