Compare commits

...

2 Commits

Author SHA1 Message Date
Eli Ribble ed67b7cf80 Remove old .tmux.conf
Whatever systems I have that don't have the latest tmux, I'll cope.
I can create my own symlinks, for Darwin's sake.
2024-06-25 18:26:05 -07:00
Eli Ribble aa05c9f5a6 Fix using fish for tmux on multiple different systems
Previously I used `default-shell` which must be a full path. On
different systems that path is different (specifically NixOS). Instead
we can use `default-command` which can execute anything from the PATH,
which is what we want.
2024-06-25 18:23:33 -07:00
2 changed files with 1 additions and 22 deletions

View File

@ -1,21 +0,0 @@
set-option -g default-shell /usr/bin/fish
bind-key h select-pane -L
bind-key j select-pane -D
bind-key k select-pane -U
bind-key l select-pane -R
# nested tmux, obey me
bind-key a send-prefix
# Avoid the annoying bit of delay when using the control character
set -g escape-time 0
set -g renumber-windows on
# Show a visual bell, even on other windows
set-window-option -g visual-bell both
set-window-option -g bell-action other
# Set up the window visuals
set -g window-status-style bg=yellow
set -g window-status-current-style bg=red,fg=white

View File

@ -1,4 +1,4 @@
set-option -g default-shell /usr/bin/fish set-option -g default-command fish
bind-key h select-pane -L bind-key h select-pane -L
bind-key j select-pane -D bind-key j select-pane -D