💄 style(yazi): code alignment
This commit is contained in:
parent
f980edec57
commit
cd1fcbbda0
1 changed files with 10 additions and 10 deletions
|
@ -5,42 +5,42 @@
|
||||||
prepend_keymap = [
|
prepend_keymap = [
|
||||||
{ on = [
|
{ on = [
|
||||||
"<C-s>",
|
"<C-s>",
|
||||||
], exec = '''shell "$SHELL" --block --confirm''', desc = "Open shell here" },
|
], run = '''shell "$SHELL" --block --confirm''', desc = "Open shell here" },
|
||||||
]
|
]
|
||||||
|
|
||||||
append_keymap = [
|
append_keymap = [
|
||||||
{ on = [
|
{ on = [
|
||||||
"e",
|
"e",
|
||||||
], exec = "open", desc = "Open the selected files" },
|
], run = "open", desc = "Open the selected files" },
|
||||||
{ on = [
|
{ on = [
|
||||||
"E",
|
"E",
|
||||||
], exec = "open --interactive", desc = "Open the selected files interactively" },
|
], run = "open --interactive", desc = "Open the selected files interactively" },
|
||||||
{ on = [
|
{ on = [
|
||||||
"g",
|
"g",
|
||||||
"n",
|
"n",
|
||||||
], exec = "cd ~/.config/nvim", desc = "Go to the nvim directory" },
|
], run = "cd ~/.config/nvim", desc = "Go to the nvim directory" },
|
||||||
{ on = [
|
{ on = [
|
||||||
"g",
|
"g",
|
||||||
"v",
|
"v",
|
||||||
], exec = "cd ~/Videos", desc = "Go to the videos directory" },
|
], run = "cd ~/Videos", desc = "Go to the videos directory" },
|
||||||
{ on = [
|
{ on = [
|
||||||
"g",
|
"g",
|
||||||
"i",
|
"i",
|
||||||
], exec = "cd ~/Imagenes", desc = "Go to the images directory" },
|
], run = "cd ~/Imagenes", desc = "Go to the images directory" },
|
||||||
{ on = [
|
{ on = [
|
||||||
"g",
|
"g",
|
||||||
"D",
|
"D",
|
||||||
], exec = "cd ~/Documentos", desc = "Go to the docs directory" },
|
], run = "cd ~/Documentos", desc = "Go to the docs directory" },
|
||||||
{ on = [
|
{ on = [
|
||||||
"g",
|
"g",
|
||||||
"o",
|
"o",
|
||||||
], exec = "cd ~/Documentos/Obsidian/obsidianVault/", desc = "Go to the obsidian directory" },
|
], run = "cd ~/Documentos/Obsidian/obsidianVault/", desc = "Go to the obsidian directory" },
|
||||||
{ on = [
|
{ on = [
|
||||||
"g",
|
"g",
|
||||||
"r",
|
"r",
|
||||||
], exec = "cd ~/Repos", desc = "Go to the repos directory" },
|
], run = "cd ~/Repos", desc = "Go to the repos directory" },
|
||||||
]
|
]
|
||||||
|
|
||||||
[input]
|
[input]
|
||||||
|
|
||||||
prepend_keymap = [{ on = ["<Esc>"], exec = "close", desc = "Cancel input" }]
|
prepend_keymap = [{ on = ["<Esc>"], run = "close", desc = "Cancel input" }]
|
||||||
|
|
Loading…
Add table
Reference in a new issue