From cac321dd2ef6ca545fdca5545e26048ecff3dfa9 Mon Sep 17 00:00:00 2001 From: Nanderty Date: Sun, 21 May 2023 10:43:27 +0200 Subject: lsp icons --- lua/plugins/interface.lua | 11 ++++++----- lua/plugins/lsp.lua | 2 +- 2 files changed, 7 insertions(+), 6 deletions(-) (limited to 'lua/plugins') 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 }) -- cgit v1.2.3