54 lines
1.1 KiB
TOML
54 lines
1.1 KiB
TOML
[[mgr.prepend_keymap]]
|
|
on = ["g", "C"]
|
|
run = "cd ~/config"
|
|
desc = "Go to dotfiles"
|
|
|
|
[[mgr.prepend_keymap]]
|
|
on = ["g", "d"]
|
|
run = "cd ~/Documents"
|
|
desc = "Go to Documents"
|
|
|
|
[[mgr.prepend_keymap]]
|
|
on = ["g", "D"]
|
|
run = "cd ~/Downloads"
|
|
desc = "Go to Downloads"
|
|
|
|
[[mgr.prepend_keymap]]
|
|
on = ["g", "G", "s"]
|
|
run = "cd ~/.local/share/Steam/steamapps/common"
|
|
desc = "Go to steamapps"
|
|
|
|
[[mgr.prepend_keymap]]
|
|
on = ["g", "m"]
|
|
run = "cd ~/Music"
|
|
desc = "Go to Music"
|
|
|
|
[[mgr.prepend_keymap]]
|
|
on = ["g", "P"]
|
|
run = "cd ~/Projects"
|
|
desc = "Go to Projects"
|
|
|
|
[[mgr.prepend_keymap]]
|
|
on = ["g", "p", "p"]
|
|
run = "cd ~/Pictures"
|
|
desc = "Go to Pictures"
|
|
|
|
[[mgr.prepend_keymap]]
|
|
on = ["g", "p", "s"]
|
|
run = "cd ~/Pictures/Screenshots"
|
|
desc = "Go to Screenshots"
|
|
|
|
[[mgr.prepend_keymap]]
|
|
on = ["g", "v", "v"]
|
|
run = "cd ~/Videos"
|
|
desc = "Go to Videos"
|
|
|
|
[[mgr.prepend_keymap]]
|
|
on = ["g", "v", "r"]
|
|
run = "cd ~/Videos/Recording"
|
|
desc = "Go to Recordings"
|
|
|
|
# yank and copy to clipboard
|
|
[[mgr.prepend_keymap]]
|
|
on = "y"
|
|
run = [ 'shell -- for path in "$@"; do echo "file://$path"; done | wl-copy -t text/uri-list', "yank" ]
|