rm extra space from statusline icons
This commit is contained in:
parent
2c33e3dd38
commit
0e09c3f471
|
@ -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 = {
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue