commit 87ef288879fcca60311ddb193afbda666ed5e18c parent 4b86bb5ce4e0c381e4be3b62037cbaeac7ccc360 Author: mtmn <miro@haravara.org> Date: Sat, 2 May 2026 04:30:03 +0200 chore: update flakes, nixaran Diffstat:
| M | hosts/nixaran/configuration.nix | | | 0 | |
| M | modules/mixins/dotfiles/config/zsh/rc/keybindings | | | 2 | +- |
| M | modules/mixins/dotfiles/config/zsh/rc/magdalena | | | 7 | ++++--- |
3 files changed, 5 insertions(+), 4 deletions(-)
diff --git a/hosts/nixaran/configuration.nix b/hosts/nixaran/configuration.nix Binary files differ. diff --git a/modules/mixins/dotfiles/config/zsh/rc/keybindings b/modules/mixins/dotfiles/config/zsh/rc/keybindings @@ -56,4 +56,4 @@ zle -N fzf_copy_from_cliphist bindkey '^J' 'fzf_copy_from_cliphist' bindkey '^F' 'magdalena_goto_file' bindkey '^K' 'magdalena_goto_dir' -bindkey '^G' 'magdalena_fav_dirs' +bindkey '^G' 'magdalena_favorites' diff --git a/modules/mixins/dotfiles/config/zsh/rc/magdalena b/modules/mixins/dotfiles/config/zsh/rc/magdalena @@ -8,10 +8,11 @@ magdalena_goto_dir() { dir=$(magdalena goto-dir) && cd "$dir" && zle reset-prompt 2>/dev/null || true } -magdalena_fav_dirs() { - dir=$(magdalena fav-dirs) && cd "$dir" && zle reset-prompt 2>/dev/null || true +magdalena_favorites() { + local result=$(magdalena favorites) && cd "$result" + zle reset-prompt 2>/dev/null || true } zle -N magdalena_goto_file zle -N magdalena_goto_dir -zle -N magdalena_fav_dirs +zle -N magdalena_favorites