all repos

dotfiles @ 34f6966

my dotfiles
3 files changed, 24 insertions(+), 0 deletions(-)
yazi: add config, and shell wrapper
Author: Oleksandr Smirnov olexsmir@gmail.com
Committed at: 2025-10-24 23:20:41 +0300
Parent: 1144351
A config/fish/functions/yaz.fish

@@ -0,0 +1,8 @@

+function yaz + set tmp (mktemp -t "yazi-cwd.XXXXXX") + yazi $argv --cwd-file="$tmp" + if read -z cwd < "$tmp"; and [ -n "$cwd" ]; and [ "$cwd" != "$PWD" ] + builtin cd -- "$cwd" + end + rm -f -- "$tmp" +end
A config/yazi/keymap.toml

@@ -0,0 +1,10 @@

+[[mgr.prepend_keymap]] +on = [ "g", "c" ] +run = "cd ~/.dotfiles" +desc = "goto .dotfiles" + +[[mgr.prepend_keymap]] +on = [ "g", "v" ] +run = "cd ~/vods" +desc = "goto ~/vods" +
A config/yazi/yazi.toml

@@ -0,0 +1,6 @@

+[mgr] +sort_sensitive = false +sort_dir_first = true +linemode = "none" +show_symlink = true +show_hidden = false