feat: add Harpoon and Training mode plugins
- 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>
This commit is contained in:
parent
9e6b01e176
commit
161310a072
6 changed files with 446 additions and 0 deletions
10
lua/plugins/spec/harpoon.lua
Normal file
10
lua/plugins/spec/harpoon.lua
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
-- Harpoon - Quick file navigation
|
||||
return {
|
||||
'ThePrimeagen/harpoon',
|
||||
branch = 'harpoon2',
|
||||
dependencies = { 'nvim-lua/plenary.nvim' },
|
||||
event = 'VeryLazy',
|
||||
config = function()
|
||||
require('plugins.config.harpoon').setup()
|
||||
end,
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue