Last active
August 29, 2015 14:12
-
-
Save paulc/3a78dcb870d03d10e4be to your computer and use it in GitHub Desktop.
tmux.conf
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set -g utf8 | |
set -g default-terminal "screen-256color" | |
set -g history-limit 10000 | |
set -g prefix C-a | |
set-window-option -g utf8 on | |
unbind C-b | |
bind C-a send-prefix | |
bind | split-window -h | |
bind _ split-window -v | |
bind r source-file ~/.tmux.conf \; display "Reloaded!" | |
bind Space next-window | |
set-option -g status on | |
set-option -g pane-border-fg colour88 | |
set-option -g pane-active-border-fg colour240 | |
set-option -g status-bg colour235 | |
set-option -g status-fg colour130 | |
set-option -g status-attr dim | |
set-option -g message-bg colour235 | |
set-option -g message-fg colour130 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment