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