Last active
August 29, 2015 14:03
-
-
Save notsobad/d37ca7e7ba23fdad7d49 to your computer and use it in GitHub Desktop.
My 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
# remap prefix to Control + a | |
set -g prefix C-a | |
unbind C-b | |
bind C-a send-prefix | |
# Base | |
set -g history-limit 30000 | |
set -g status-justify left | |
set-window-option -g utf8 on | |
set-window-option -g automatic-rename on | |
# force a reload of the config file | |
unbind r | |
bind r source-file ~/.tmux.conf | |
# Window cycling | |
set-window-option -g mode-keys vi | |
bind h select-pane -L | |
bind j select-pane -D | |
bind k select-pane -U | |
bind l select-pane -R | |
unbind ^A | |
bind ^A select-pane -t :.+ | |
bind-key x kill-pane | |
# Default ctrl+a | |
bind a send-prefix | |
# Window color | |
set -g default-terminal "screen-256color" | |
set-option -g pane-active-border-fg red | |
set-window-option -g window-status-current-bg red | |
set-window-option -g window-status-format ' #I-#W ' | |
set-window-option -g window-status-current-format ' #I-#W ' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment