This commit is contained in:
Alexander Bell 2025-06-04 12:16:53 +02:00
parent 6993b70204
commit 4865bfe549
2 changed files with 28 additions and 4 deletions

View File

@ -1,19 +1,19 @@
[[manager.prepend_keymap]] [[mgr.prepend_keymap]]
on = [ "C", "i" ] on = [ "C", "i" ]
run = "plugin lazygit" run = "plugin lazygit"
desc = "run lazygit" desc = "run lazygit"
[[manager.append_keymap]] [[mgr.append_keymap]]
on = [ "g", "p" ] on = [ "g", "p" ]
run = "cd ~/Documents/Programming" run = "cd ~/Documents/Programming"
desc = "Go to ~/Documents/Programming" desc = "Go to ~/Documents/Programming"
[[manager.append_keymap]] [[mgr.append_keymap]]
on = [ "g", "u" ] on = [ "g", "u" ]
run = "cd ~/Documents/Uni" run = "cd ~/Documents/Uni"
desc = "Go to ~/Documents/Uni" desc = "Go to ~/Documents/Uni"
[[manager.append_keymap]] [[mgr.append_keymap]]
on = [ "g", "s" ] on = [ "g", "s" ]
run = "cd /mnt/smb" run = "cd /mnt/smb"
desc = "Go to /mnt/smb" desc = "Go to /mnt/smb"

View File

@ -0,0 +1,24 @@
[[manager.prepend_keymap]]
on = [ "C", "i" ]
run = "plugin lazygit"
desc = "run lazygit"
[[manager.append_keymap]]
on = [ "g", "p" ]
run = "cd ~/Documents/Programming"
desc = "Go to ~/Documents/Programming"
[[manager.append_keymap]]
on = [ "g", "u" ]
run = "cd ~/Documents/Uni"
desc = "Go to ~/Documents/Uni"
[[manager.append_keymap]]
on = [ "g", "s" ]
run = "cd /mnt/smb"
desc = "Go to /mnt/smb"
[[input.prepend_keymap]]
on = "<Esc>"
run = "close"
desc = "Cancel input"