LSP finally working a decent amount
This commit is contained in:
parent
518951ec2f
commit
9c884fb841
15 changed files with 489 additions and 112 deletions
|
@ -1,25 +1,21 @@
|
|||
local test = function ()
|
||||
return "test 123"
|
||||
end
|
||||
|
||||
return {
|
||||
"nvim-lualine/lualine.nvim",
|
||||
dependencies = {
|
||||
"RingOfStorms/lualine-lsp-progress",
|
||||
},
|
||||
opts = {
|
||||
options = {
|
||||
theme = "codedark",
|
||||
section_separators = { left = '', right = '' },
|
||||
component_separators = '|',
|
||||
},
|
||||
sections = {
|
||||
lualine_a = {'mode'},
|
||||
lualine_b = {'branch', 'diff', 'diagnostics'},
|
||||
lualine_c = {'filename', "lsp_progress", test},
|
||||
lualine_x = {'encoding', 'filetype', 'filesize'},
|
||||
lualine_y = {'searchcount', 'selectioncount'},
|
||||
lualine_z = {'location'},
|
||||
},
|
||||
},
|
||||
"nvim-lualine/lualine.nvim",
|
||||
--dependencies = {
|
||||
-- "RingOfStorms/lualine-lsp-progress",
|
||||
--},
|
||||
opts = {
|
||||
options = {
|
||||
theme = "codedark",
|
||||
section_separators = { left = "", right = "" },
|
||||
component_separators = "|",
|
||||
},
|
||||
sections = {
|
||||
lualine_a = { "mode" },
|
||||
lualine_b = { "branch", "diff", "diagnostics" },
|
||||
lualine_c = { "filename" },
|
||||
lualine_x = { "encoding", "filetype", "filesize" },
|
||||
lualine_y = { "searchcount", "selectioncount" },
|
||||
lualine_z = { "location" },
|
||||
},
|
||||
},
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue