Skip to content

Instantly share code, notes, and snippets.

@smoothml
Last active May 1, 2019 08:01
Show Gist options
  • Save smoothml/d68d9a1c281664e62902e0581101da5d to your computer and use it in GitHub Desktop.
Save smoothml/d68d9a1c281664e62902e0581101da5d to your computer and use it in GitHub Desktop.
Tmux configuration
# Prefix key
unbind C-b
set -g prefix C-a
# Pnae switching
bind -n M-Left select-pane -L
bind -n M-Right select-pane -R
bind -n M-Up select-pane -U
bind -n M-Down select-pane -D
# Colour active window
set-window-option -g window-status-current-bg yellow
# Terminal colour scheme
set -g default-terminal "screen-256color"
# Enable mouse actions
set -g mouse on
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment