feat: update neotree for moving files

This commit is contained in:
Devin Lumley 2024-01-10 15:56:52 -08:00
parent 9ade6862af
commit e0c7a3e034
2 changed files with 12 additions and 0 deletions

View file

@ -9,6 +9,7 @@ return {
vim.keymap.set('n', '<Leader>pp', builtin.git_files, { desc = "Search git_files" })
vim.keymap.set('n', '<Leader>pf', builtin.find_files, { desc = "Search all files " })
vim.keymap.set('n', '<Leader>fh', builtin.help_tags, { desc = "View help tags" })
vim.keymap.set('n', '<Leader>gc', builtin.git_branches, { desc = "Checkout git branches" })
vim.keymap.set('n', '<Leader>ps', function()
builtin.grep_string({ search = vim.fn.input("Grep > ") })
end, { desc = "Grep entire project for string" })