Skip to content

Instantly share code, notes, and snippets.

@poppindouble
Last active July 23, 2022 05:42
Show Gist options
  • Save poppindouble/453215330408d1a41a475e5e8d715a6d to your computer and use it in GitHub Desktop.
Save poppindouble/453215330408d1a41a475e5e8d715a6d to your computer and use it in GitHub Desktop.
tmux.conf
# Send prefix
set-option -g prefix C-a
unbind-key C-a
bind-key C-a send-prefix
# Alt-arrow to switch windows
bind -n M-h previous-window
bind -n M-l next-window
# Set easier window split keys
bind-key v split-window -h
bind-key h split-window -v
# Set default shell for tmux to fish
set -g default-command /usr/bin/fish
set -g default-shell /usr/bin/fish
new-session -n "new"
set-window-option -g mode-keys vi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment