Skip to content

Instantly share code, notes, and snippets.

@nachocodexx
Created December 26, 2025 22:58
Show Gist options
  • Select an option

  • Save nachocodexx/08389cdaf3b7bd0404dfb521876563a2 to your computer and use it in GitHub Desktop.

Select an option

Save nachocodexx/08389cdaf3b7bd0404dfb521876563a2 to your computer and use it in GitHub Desktop.
Tmux conf
# remap prefix from 'C-b' to 'C-a'
unbind C-b
set-option -g prefix C-a
bind-key C-a send-prefix
# split panes using | and -
bind | split-window -h
bind - split-window -v
unbind '"'
unbind %
bind -n M-Right select-pane -R
bind -n M-Up select-pane -U
bind -n M-Down select-pane -D
set-option -sg escape-time 10
set-option -g focus-events on
set -g default-terminal "screen-256color"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment