12 lines
253 B
Lua
12 lines
253 B
Lua
return {
|
|
{
|
|
"hinell/lsp-timeout.nvim",
|
|
event = "BufRead",
|
|
dependencies = { "neovim/nvim-lspconfig" },
|
|
init = function()
|
|
vim.g["lsp-timeout-config"] = {
|
|
startTimeout = 1000 * 1, -- ms before restart
|
|
}
|
|
end,
|
|
},
|
|
}
|