dotfiles/.config/fish/functions/fish_user_key_bindings.fish
mitchell e511802ea3 Update fish aliases & keybinds, update git config, update Neovim config
Neovim:
- Replace typescript-tools with ts_ls
- Add Markview
- Modify Neo-tree keybinds
- Modify CodeCompanion models
- Add Svelte linting/fixing
2025-05-08 15:12:45 -04:00

13 lines
669 B
Fish

function fish_user_key_bindings
bind --mode insert comma,a 'ssh_add; commandline -f repaint'
bind --mode insert comma,p 'nvim +"Telescope git_files"; commandline -f repaint'
bind --mode insert comma,f 'nvim +"Telescope find_files"; commandline -f repaint'
bind --mode insert comma,n 'nvim .; commandline -f repaint'
bind --mode insert comma,s 'sysz; commandline -f repaint'
bind --mode insert comma,z 'zi; commandline -f repaint'
bind --mode insert comma,t 'fzf-file-widget'
bind --mode insert comma,r 'fzf-history-widget'
bind --mode insert comma,c 'fzf-cd-widget'
bind --mode insert comma,l 'clear; commandline -f repaint'
end