diff --git a/lua/taken/plugins/fidget.lua b/lua/taken/plugins/fidget.lua index 3d57246..f01609c 100644 --- a/lua/taken/plugins/fidget.lua +++ b/lua/taken/plugins/fidget.lua @@ -1,16 +1,17 @@ --- @type LazyPluginSpec return { "j-hui/fidget.nvim", - tag = "legacy", event = "LspAttach", config = function() vim.api.nvim_set_hl(0, "FidgetTitle", { link = "DiagnosticText" }) vim.api.nvim_set_hl(0, "FidgetTask", { link = "DiagnosticInfo" }) require("fidget").setup({ - window = { - blend = 0, - relative = "editor", + notification = { + window = { + winblend = 0, + relative = "editor", + }, }, }) end, diff --git a/lua/taken/plugins/noice.lua b/lua/taken/plugins/noice.lua index f0242bf..1ddb741 100644 --- a/lua/taken/plugins/noice.lua +++ b/lua/taken/plugins/noice.lua @@ -56,6 +56,9 @@ return { }, }, lsp = { + progress = { + enabled = false, + }, override = { ["vim.lsp.util.convert_input_to_markdown_lines"] = true, ["vim.lsp.util.stylize_markdown"] = true, diff --git a/lua/taken/plugins/notify.lua b/lua/taken/plugins/notify.lua index 43a8a4c..ff4a337 100644 --- a/lua/taken/plugins/notify.lua +++ b/lua/taken/plugins/notify.lua @@ -1,6 +1,7 @@ --- @type LazyPluginSpec return { "rcarriga/nvim-notify", + enabled = false, config = function() local notify = require("notify") diff --git a/lua/taken/plugins/snacks.lua b/lua/taken/plugins/snacks.lua new file mode 100644 index 0000000..749d576 --- /dev/null +++ b/lua/taken/plugins/snacks.lua @@ -0,0 +1,11 @@ +return { + "folke/snacks.nvim", + config = function() + local snacks = require("snacks") + + snacks.setup({ + notifier = {}, + scroll = {}, + }) + end, +}