mirror of
https://mzte.de/git/LordMZTE/dotfiles.git
synced 2024-12-14 08:13:50 +01:00
add lsp to status bar
This commit is contained in:
parent
7ab171a896
commit
87b5040a5b
1 changed files with 33 additions and 19 deletions
|
@ -195,6 +195,28 @@ gls.left[10] = {
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
gls.left[11] = {
|
gls.left[11] = {
|
||||||
|
TrailingWhiteSpace = {
|
||||||
|
provider = TrailingWhiteSpace,
|
||||||
|
icon = " ",
|
||||||
|
highlight = { colors.yellow, colors.line_bg },
|
||||||
|
},
|
||||||
|
}
|
||||||
|
gls.left[12] = {
|
||||||
|
ShowLspClient = {
|
||||||
|
provider = "GetLspClient",
|
||||||
|
icon = " ",
|
||||||
|
highlight = { colors.green, colors.line_bg },
|
||||||
|
}
|
||||||
|
}
|
||||||
|
gls.left[13] = {
|
||||||
|
SpaceBefore = {
|
||||||
|
provider = function()
|
||||||
|
return " "
|
||||||
|
end,
|
||||||
|
highlight = { colors.line_bg, colors.line_bg },
|
||||||
|
},
|
||||||
|
}
|
||||||
|
gls.left[14] = {
|
||||||
LeftEnd = {
|
LeftEnd = {
|
||||||
provider = function()
|
provider = function()
|
||||||
return ""
|
return ""
|
||||||
|
@ -202,31 +224,23 @@ gls.left[11] = {
|
||||||
highlight = { colors.line_bg, colors.bg },
|
highlight = { colors.line_bg, colors.bg },
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
gls.left[15] = {
|
||||||
gls.left[12] = {
|
SpaceAfter = {
|
||||||
TrailingWhiteSpace = {
|
|
||||||
provider = TrailingWhiteSpace,
|
|
||||||
icon = " ",
|
|
||||||
highlight = { colors.yellow, colors.bg },
|
|
||||||
},
|
|
||||||
}
|
|
||||||
|
|
||||||
gls.left[13] = {
|
|
||||||
DiagnosticError = {
|
|
||||||
provider = "DiagnosticError",
|
|
||||||
icon = " ",
|
|
||||||
highlight = { colors.red, colors.bg },
|
|
||||||
},
|
|
||||||
}
|
|
||||||
gls.left[14] = {
|
|
||||||
Space = {
|
|
||||||
provider = function()
|
provider = function()
|
||||||
return " "
|
return " "
|
||||||
end,
|
end,
|
||||||
highlight = { colors.bg, colors.bg },
|
highlight = { colors.bg, colors.bg },
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
gls.left[15] = {
|
|
||||||
|
gls.left[16] = {
|
||||||
|
DiagnosticError = {
|
||||||
|
provider = "DiagnosticError",
|
||||||
|
icon = " ",
|
||||||
|
highlight = { colors.red, colors.bg },
|
||||||
|
},
|
||||||
|
}
|
||||||
|
gls.left[17] = {
|
||||||
DiagnosticWarn = {
|
DiagnosticWarn = {
|
||||||
provider = "DiagnosticWarn",
|
provider = "DiagnosticWarn",
|
||||||
icon = " ",
|
icon = " ",
|
||||||
|
|
Loading…
Reference in a new issue