updated lualine and made lspconfig work in insertmode
This commit is contained in:
parent
adea7d7f0e
commit
8112669f3d
2 changed files with 10 additions and 5 deletions
|
@ -59,7 +59,8 @@ return {
|
|||
float = { border = border },
|
||||
virtual_text = {
|
||||
prefix = '●', -- Could be '●', '■', 'x', '▎'
|
||||
}
|
||||
},
|
||||
update_in_insert = true
|
||||
|
||||
})
|
||||
|
||||
|
|
|
@ -27,14 +27,17 @@ return {
|
|||
lualine_c = {
|
||||
{
|
||||
'filename',
|
||||
color={gui='italic', fg='#266b79', bg='#1d2021'},
|
||||
path = 3,
|
||||
color={gui='italic', fg='#d3869b', bg='#1d2021'},
|
||||
path = 1,
|
||||
}
|
||||
},
|
||||
lualine_x = {
|
||||
{
|
||||
'filetype',
|
||||
color={bg='#1d2021', fg='266b79', gui='italic'},
|
||||
color={bg='#1d2021', fg='#d4be98', gui='italic'},
|
||||
fmt = function (str)
|
||||
return (str:gsub("^%l", string.upper))
|
||||
end,
|
||||
}
|
||||
},
|
||||
lualine_y = {
|
||||
|
@ -42,7 +45,8 @@ return {
|
|||
'diagnostics',
|
||||
color={gui='bold', bg='#141617'},
|
||||
sections = { 'error', 'warn', 'info', 'hint' },
|
||||
symbols = { error = "✘ ", warn = " ", info = " ", hint = " " }
|
||||
symbols = { error = "✘ ", warn = " ", info = " ", hint = " " },
|
||||
update_in_insert = true
|
||||
|
||||
},
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue