Skip to content

Instantly share code, notes, and snippets.

@appnus
Last active August 29, 2015 14:12
Show Gist options
  • Save appnus/0693a554b9632f04f630 to your computer and use it in GitHub Desktop.
Save appnus/0693a554b9632f04f630 to your computer and use it in GitHub Desktop.
tmux Config File
set -g default-terminal "screen-256color"
set -g history-limit 5000
set -sg escape-time 1
set -g repeat-time 1000
set -g base-index 1
setw -g pane-base-index 1
set -g renumber-windows on
setw -g mode-keys vi
#setw -g mode-mouse off
setw -g monitor-activity on
set -g visual-activity on
set-window-option -g window-status-current-bg yellow
set-option -g mouse-select-pane on
#set-option -g default-command "reattach-to-user-namespace -l bash"
unbind C-b
set -g prefix C-j
unbind %
bind | split-window -h
unbind '"'
bind - split-window -v
unbind r
bind r source-file ~/.tmux.conf \; display "tmux Config Reloaded!"
bind ! kill-window
bind D source-file ~/.tmux/dev
setw -g utf8 on
set -g status-utf8 on
set -g status-interval 30
set -g status-justify left
set -g status-left-length 40
set -g status-left '#[fg=yellow]#S#[fg=green] #I:#P#[default]'
set-option -g status-right '#[fg=yellow]#H#[default] %m/%d/%y %I:%M'
set -g status-bg colour235
set -g status-fg cyan
set-window-option -g window-status-current-fg green
set-window-option -g window-status-current-bg colour235
set -g pane-border-fg green
set -g pane-border-bg colour235
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment