Add Finder integration to Neovim keybindings
- Add <leader>f keymap to show current file in Finder using 'open -R' - Update README.md with new keybinding documentation - Provides quick file location alongside existing <leader>o for opening 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
fe23254558
commit
50a6a217e2
2 changed files with 7 additions and 0 deletions
6
nvim.nix
6
nvim.nix
|
|
@ -139,6 +139,12 @@
|
|||
action = ":silent !open %<CR>";
|
||||
options = { desc = "Open file with system default app"; };
|
||||
}
|
||||
{
|
||||
mode = "n";
|
||||
key = "<leader>f";
|
||||
action = ":silent !open -R %<CR>";
|
||||
options = { desc = "Show current file in Finder"; };
|
||||
}
|
||||
|
||||
# Git keymaps (vim-fugitive)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue