From 5ff382fa4f155f0f15d8a0fabb16a5c22e20761a Mon Sep 17 00:00:00 2001 From: Jason Hilder Date: Thu, 23 Apr 2026 15:37:20 +0200 Subject: [PATCH] Updates to handle helix and lf in tmux. --- config/tmux/.tmux.conf | 4 ++-- install.sh | 3 +++ 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/config/tmux/.tmux.conf b/config/tmux/.tmux.conf index e98844d..04eab55 100644 --- a/config/tmux/.tmux.conf +++ b/config/tmux/.tmux.conf @@ -45,9 +45,9 @@ unbind % bind '\' split-window -h -l 40% -c "#{pane_current_path}" bind '`' split-window -v -l 35% -c "#{pane_current_path}" -bind-key -n 'C-\' run-shell -b "~/.local/bin//toggle-tmux-pane" +bind-key -n 'C-\' run-shell -b "~/.local/bin/tmux-toggle-term" bind g run-shell 'tmux popup -d "#{pane_current_path}" -xC -yC -w90% -h90% -E gitu' -bind f run-shell 'tmux popup -d "#{pane_current_path}" -xC -yC -w90% -h90% -E spf' +bind f run-shell 'tmux popup -d "#{pane_current_path}" -xC -yC -w90% -h90% -E "~/.local/bin/tmux-lf-helix"' ## STATUS BAR ################################################################## diff --git a/install.sh b/install.sh index f77fb4c..b1c12c6 100755 --- a/install.sh +++ b/install.sh @@ -130,7 +130,10 @@ if [ "$DO_LINKS" = true ]; then link_file "$DOTFILES_DIR/config/foot" "$HOME/.config/foot" link_file "$DOTFILES_DIR/config/nvim" "$HOME/.config/nvim" link_file "$DOTFILES_DIR/config/gitu" "$HOME/.config/gitu" + link_file "$DOTFILES_DIR/config/lf" "$HOME/.config/lf" + link_file "$DOTFILES_DIR/config/tmux/.tmux.conf" "$HOME/.tmux.conf" + link_file "$DOTFILES_DIR/config/helix/config.toml" "$HOME/.config/helix/config.toml" link_file "$DOTFILES_DIR/config/gtk3/gtk.css" "$HOME/.config/gtk-3.0/gtk.css" link_file "$DOTFILES_DIR/config/gtk4/gtk.css" "$HOME/.config/gtk-4.0/gtk.css"