From 5a0199c486eb5550245114e02c91cf8b1e0f9c66 Mon Sep 17 00:00:00 2001 From: Barrett Ruth Date: Sun, 8 Feb 2026 14:38:32 -0500 Subject: [PATCH] fix more shit --- home/modules/shell.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/home/modules/shell.nix b/home/modules/shell.nix index 2c44d3f..182a812 100644 --- a/home/modules/shell.nix +++ b/home/modules/shell.nix @@ -213,7 +213,7 @@ in { fzf-config-widget() { file="$(fd --type file --hidden . ~/.config | sed "s|$HOME|~|g" | fzf)" [ -n "$file" ] || { zle reset-prompt; return; } - file="${file/#\~/$HOME}" + file="''${file/#\~/$HOME}" BUFFER="nvim $file" zle accept-line } @@ -319,7 +319,7 @@ in { set -g status-position bottom set -g status-interval 5 set -g status-left ' ' - set -g status-right '' + set -g status-right "" set-hook -g session-created 'run "mux bar #S"' set-hook -g session-closed 'run "mux bar #S"' set-hook -g client-session-changed 'run "mux bar #S"'