Files
neovim-config/lua/taken/plugins/snacks.lua
2025-04-27 20:35:13 +02:00

17 lines
389 B
Lua

return {
"folke/snacks.nvim",
config = function()
local snacks = require("snacks")
snacks.setup({
bigfile = {},
notifier = {},
scroll = {},
})
vim.api.nvim_create_user_command("NotifyHistory", function()
Snacks.notifier.show_history()
end, { desc = "Show notification history" })
end,
}