fix(nvim): lspconfig for nil
parent
e0599018e2
commit
4a5b007e00
|
@ -13,6 +13,10 @@ capabilities.textDocument.foldingRange = {
|
||||||
dynamicRegistration = false,
|
dynamicRegistration = false,
|
||||||
lineFoldingOnly = true,
|
lineFoldingOnly = true,
|
||||||
}
|
}
|
||||||
|
-- NOTE https://github.com/neovim/neovim/pull/22405
|
||||||
|
capabilities.didChangeWatchedFiles = {
|
||||||
|
dynamicRegistration = true,
|
||||||
|
}
|
||||||
|
|
||||||
local lspconfig = require("lspconfig")
|
local lspconfig = require("lspconfig")
|
||||||
local on_attach_def = function(client, bufnr)
|
local on_attach_def = function(client, bufnr)
|
||||||
|
|
Loading…
Reference in New Issue