-- 🍿 A collection of QoL plugins for Neovim -- https://github.com/folke/snacks.nvim return { "snacks.nvim", enabled = true, event = {}, cmd = {}, after = function() require("snacks").setup({ bigfile = { enabled = true }, dashboard = { enabled = true }, explorer = { enabled = true, replace_netrw = true }, indent = { enabled = false }, input = { enabled = true }, notifier = { enabled = true, timeout = 3000, }, picker = { enabled = true }, quickfile = { enabled = true }, scope = { enabled = true }, scroll = { enabled = false }, statuscolumn = { enabled = true }, words = { enabled = true }, styles = { notification = { -- wo = { wrap = true } -- Wrap notifications }, }, }) end, }