2021-04-19 02:56:32 +00:00
|
|
|
local lsp = require("vim.lsp")
|
|
|
|
|
2021-05-02 13:54:30 +00:00
|
|
|
M = {}
|
2021-04-19 02:56:32 +00:00
|
|
|
local capabilities = vim.lsp.protocol.make_client_capabilities()
|
|
|
|
capabilities.textDocument.completion.completionItem.snippetSupport = true
|
|
|
|
|
|
|
|
function M.reload_lsp()
|
|
|
|
vim.lsp.stop_client(vim.lsp.get_active_clients())
|
|
|
|
vim.cmd [[edit]]
|
|
|
|
end
|
|
|
|
|
|
|
|
function M.open_lsp_log()
|
|
|
|
local path = vim.lsp.get_log_path()
|
|
|
|
vim.cmd("edit " .. path)
|
|
|
|
end
|
|
|
|
|
|
|
|
vim.cmd("command! -nargs=0 LspLog call v:lua.open_lsp_log()")
|
|
|
|
vim.cmd("command! -nargs=0 LspRestart call v:lua.reload_lsp()")
|
|
|
|
|
|
|
|
local cfg = {}
|
2021-05-02 13:54:30 +00:00
|
|
|
|
|
|
|
require("lsp.clients").setup(cfg)
|
2021-04-19 02:56:32 +00:00
|
|
|
return M
|