nvim: add better folds around lsp servers

This commit is contained in:
PowerUser64 2022-02-06 22:10:32 -08:00
parent 126de5591d
commit d576705d51

View file

@ -232,6 +232,7 @@ M.lspconfig = function()
end
-- Load servers >>>
-- General servers >>>
-- Use a loop to conveniently call 'setup' on multiple servers and
-- map buffer local keybindings when the language server attaches
local lsp_servers = {
@ -253,7 +254,9 @@ M.lspconfig = function()
}
end
end
-- Custom servers
-- <<<
-- Custom servers:
-- lua >>>
local sumneko_root_path
local sumneko_binary
@ -303,7 +306,7 @@ M.lspconfig = function()
}
end
-- lua <<<
-- Load servers <<<
-- <<<
end -- <<<
return M