mirror of
https://github.com/mitchell/dotfiles.git
synced 2025-06-19 12:45:34 +00:00
Neovim: - Replace typescript-tools with ts_ls - Add Markview - Modify Neo-tree keybinds - Modify CodeCompanion models - Add Svelte linting/fixing
13 lines
669 B
Fish
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
|