- Add Harpoon for quick file navigation - Add Training mode for learning vim motions without crutches - Configure keymaps for both plugins - Add Nix integration for training mode toggle 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
10 lines
No EOL
237 B
Lua
10 lines
No EOL
237 B
Lua
-- Harpoon - Quick file navigation
|
|
return {
|
|
'ThePrimeagen/harpoon',
|
|
branch = 'harpoon2',
|
|
dependencies = { 'nvim-lua/plenary.nvim' },
|
|
event = 'VeryLazy',
|
|
config = function()
|
|
require('plugins.config.harpoon').setup()
|
|
end,
|
|
} |