Post-upgrade fixes to noice and overseer

This commit is contained in:
Tyler Hallada 2024-06-10 17:49:29 -04:00
parent 2237f3923f
commit 13059ec752
2 changed files with 21 additions and 1 deletions

16
lua/plugins/noice.lua Normal file
View File

@ -0,0 +1,16 @@
return {
"folke/noice.nvim",
event = "VeryLazy",
-- thallada: REMOVE THIS once this issue is fixed: https://github.com/yioneko/vtsls/issues/159
opts = {
routes = {
{
filter = {
event = "notify",
find = "Request textDocument/inlayHint failed",
},
opts = { skip = true },
},
},
},
}

View File

@ -1,6 +1,10 @@
return {
"stevearc/overseer.nvim",
opts = {},
opts = {
task_list = {
direction = "left",
},
},
keys = {
{ "<leader>o", "<cmd>OverseerToggle<CR>", desc = "Toggle Overseer Panel" },
},