feat(nvim): add new keymaps to the snacks picker

This commit is contained in:
Sergio Laín 2025-02-02 00:44:29 +01:00
parent 127e203181
commit e588ac8482
No known key found for this signature in database
GPG key ID: 51BB28D8B42FB438

View file

@ -32,4 +32,11 @@ return {
},
},
},
-- stylua: ignore
keys = {
{ "<leader>fz", function() Snacks.picker.zoxide() end, desc = "Zoxide" },
{ "<leader>S", function() Snacks.picker.spelling() end, desc = "Spelling" },
{ "<leader>gB", function() Snacks.picker.git_branches() end, desc = "Git Branches" },
{ "<leader>go", function() Snacks.gitbrowse() end, desc = "Git Open Line" },
},
}