dotfiles/.config/nvim/lua/plugins/lsp-timeout.lua
Sergio Laín 980701768c
feat(nvim): bigfile and lsp-timeout plugins added
helping for those beffy files
2023-10-16 13:25:54 +02:00

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,
},
}