diff --git a/.config/nvim/lua/plugins/extras/lsp/timeout.lua b/.config/nvim/lua/plugins/extras/lsp/timeout.lua index 078422bc..7d9f1554 100644 --- a/.config/nvim/lua/plugins/extras/lsp/timeout.lua +++ b/.config/nvim/lua/plugins/extras/lsp/timeout.lua @@ -1,10 +1,7 @@ return { - "hinell/lsp-timeout.nvim", + "zeioth/garbage-day.nvim", event = "LspAttach", - dependencies = { "neovim/nvim-lspconfig" }, - init = function() - vim.g["lsp-timeout-config"] = { - startTimeout = 1000 * 1, -- ms before restart - } - end, + opts = { + grace_period = 60 * 10, + }, }