mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 00:33:00 +00:00
18 lines
528 B
TOML
18 lines
528 B
TOML
# A TOML linter such as https://taplo.tamasfe.dev/ can use this schema to validate your config.
|
|
# If you encounter any issues, please make an issue at https://github.com/yazi-rs/schemas.
|
|
"$schema" = "https://yazi-rs.github.io/schemas/prepend_keymap.json"
|
|
|
|
[mgr]
|
|
|
|
prepend_keymap = [
|
|
|
|
|
|
# Seeking
|
|
{ on = "K", run = "seek -5", desc = "Seek up 5 units in the preview" },
|
|
{ on = "J", run = "seek 5", desc = "Seek down 5 units in the preview" },
|
|
|
|
# Find
|
|
{ on = ["g", "p"], run = "cd ~/Pictures", desc = "Go ~/Pictures/"}
|
|
|
|
|
|
]
|