return { "folke/snacks.nvim", ---@type snacks.Config opts = { matcher = { -- Enable frecensy for matchers frecency = true, }, picker = { smart = { -- Remove the "recent" picker so we don't get things from other directories. multi = { "buffers", "files" }, }, }, }, keys = { { "", function() Snacks.picker.smart() end, desc = "Smart Find Files", }, -- The rest of these are just default bindings. Setting the one binding above seems to override the others. { ",", function() Snacks.picker.buffers() end, desc = "Buffers", }, { "/", LazyVim.pick("grep"), desc = "Grep (Root Dir)" }, { ":", function() Snacks.picker.command_history() end, desc = "Command History", }, { "n", function() Snacks.picker.notifications() end, desc = "Notification History", }, -- find { "fb", function() Snacks.picker.buffers() end, desc = "Buffers", }, { "fB", function() Snacks.picker.buffers({ hidden = true, nofile = true }) end, desc = "Buffers (all)", }, { "fc", LazyVim.pick.config_files(), desc = "Find Config File" }, { "ff", LazyVim.pick("files"), desc = "Find Files (Root Dir)" }, { "fF", LazyVim.pick("files", { root = false }), desc = "Find Files (cwd)" }, { "fg", function() Snacks.picker.git_files() end, desc = "Find Files (git-files)", }, { "fr", LazyVim.pick("oldfiles"), desc = "Recent" }, { "fR", function() Snacks.picker.recent({ filter = { cwd = true } }) end, desc = "Recent (cwd)", }, { "fp", function() Snacks.picker.projects() end, desc = "Projects", }, -- git { "gd", function() Snacks.picker.git_diff() end, desc = "Git Diff (hunks)", }, { "gs", function() Snacks.picker.git_status() end, desc = "Git Status", }, { "gS", function() Snacks.picker.git_stash() end, desc = "Git Stash", }, -- Grep { "sb", function() Snacks.picker.lines() end, desc = "Buffer Lines", }, { "sB", function() Snacks.picker.grep_buffers() end, desc = "Grep Open Buffers", }, { "sg", LazyVim.pick("live_grep"), desc = "Grep (Root Dir)" }, { "sG", LazyVim.pick("live_grep", { root = false }), desc = "Grep (cwd)" }, { "sp", function() Snacks.picker.lazy() end, desc = "Search for Plugin Spec", }, { "sw", LazyVim.pick("grep_word"), desc = "Visual selection or word (Root Dir)", mode = { "n", "x" } }, { "sW", LazyVim.pick("grep_word", { root = false }), desc = "Visual selection or word (cwd)", mode = { "n", "x" }, }, -- search { 's"', function() Snacks.picker.registers() end, desc = "Registers", }, { "s/", function() Snacks.picker.search_history() end, desc = "Search History", }, { "sa", function() Snacks.picker.autocmds() end, desc = "Autocmds", }, { "sc", function() Snacks.picker.command_history() end, desc = "Command History", }, { "sC", function() Snacks.picker.commands() end, desc = "Commands", }, { "sd", function() Snacks.picker.diagnostics() end, desc = "Diagnostics", }, { "sD", function() Snacks.picker.diagnostics_buffer() end, desc = "Buffer Diagnostics", }, { "sh", function() Snacks.picker.help() end, desc = "Help Pages", }, { "sH", function() Snacks.picker.highlights() end, desc = "Highlights", }, { "si", function() Snacks.picker.icons() end, desc = "Icons", }, { "sj", function() Snacks.picker.jumps() end, desc = "Jumps", }, { "sk", function() Snacks.picker.keymaps() end, desc = "Keymaps", }, { "sl", function() Snacks.picker.loclist() end, desc = "Location List", }, { "sM", function() Snacks.picker.man() end, desc = "Man Pages", }, { "sm", function() Snacks.picker.marks() end, desc = "Marks", }, { "sR", function() Snacks.picker.resume() end, desc = "Resume", }, { "sq", function() Snacks.picker.qflist() end, desc = "Quickfix List", }, { "su", function() Snacks.picker.undo() end, desc = "Undotree", }, -- ui { "uC", function() Snacks.picker.colorschemes() end, desc = "Colorschemes", }, }, }