Skip to content

Instantly share code, notes, and snippets.

@mhayes
Created October 12, 2018 19:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mhayes/ea90ac17f0dbb4ed6d1d33a4558a23c5 to your computer and use it in GitHub Desktop.
Save mhayes/ea90ac17f0dbb4ed6d1d33a4558a23c5 to your computer and use it in GitHub Desktop.
tmux configuration
unbind C-b
set -g prefix C-s
unbind +
bind + new-window -d -n tmux-zoom 'clear && echo TMUX ZOOM && read' \; swap-pane -s tmux-zoom.0 \; select-window -t tmux-zoom
unbind -
bind - last-window \; swap-pane -s tmux-zoom.0 \; kill-window -t tmux-zoom
bind r source-file ~/.tmux.conf \; display "configuration file reloaded."
#set window numbering at 1
set -g base-index 1
#set terminal
set -g default-terminal "screen-256color"
#themeing
set -g status-bg black
set -g status-fg white
setw -g window-status-fg white
setw -g window-status-bg black
setw -g window-status-attr dim
setw -g window-status-current-fg white
setw -g window-status-current-bg red
setw -g window-status-current-attr bright
set -g pane-border-fg green
set -g pane-border-bg black
set -g pane-active-border-fg white
set -g pane-active-border-bg yellow
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment