rm extra space from statusline icons

This commit is contained in:
siduck76 2021-08-27 13:48:04 +05:30
parent 2c33e3dd38
commit 0e09c3f471
2 changed files with 8 additions and 2 deletions

View file

@ -68,12 +68,18 @@ local function setup_servers()
lspconfig[lang].setup {
on_attach = on_attach,
capabilities = capabilities,
flags = {
debounce_text_changes = 500,
},
-- root_dir = vim.loop.cwd,
}
elseif lang == "lua" then
lspconfig[lang].setup {
on_attach = on_attach,
capabilities = capabilities,
flags = {
debounce_text_changes = 500,
},
settings = {
Lua = {
diagnostics = {

View file

@ -21,7 +21,7 @@ local icon_styles = {
left = " ",
right = " ",
main_icon = "",
vi_mode_icon = " ",
vi_mode_icon = " ",
position_icon = "",
},
@ -209,7 +209,7 @@ components.mid.active[1] = {
components.right.active[1] = {
provider = function()
if next(vim.lsp.buf_get_clients()) ~= nil then
return "  LSP "
return " LSP"
else
return ""
end