Created
March 4, 2015 05:23
-
-
Save shl7cc/0aa498e35f2dea2ae25c to your computer and use it in GitHub Desktop.
tmux conf
This file contains 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
# Use Ctrl-o as prefix command | |
unbind C-b | |
set-option -g prefix C-o | |
bind-key C-o last-window | |
# Start numbering at 1 | |
set -g base-index 1 | |
# Set status bar | |
set -g status-bg "#585858" | |
set -g status-fg "#c6c6c6" | |
set -g status-left-length 30 | |
set -g status-left "#[fg=#ffffff]#H" | |
set -g status-right "#[fg=#ffffff]#(date +'%H:%M %d/%m/%Y') " | |
# Activity monitoring | |
setw -g monitor-activity on | |
set -g visual-activity on | |
# Highlight active window | |
set-window-option -g window-status-current-bg "#ffffff" | |
set-window-option -g window-status-current-fg "#585858" | |
# Change pane split colours, don't need active borders | |
set -g pane-border-bg white | |
set -g pane-border-fg white | |
set -g pane-active-border-bg white | |
set -g pane-active-border-fg white | |
# move like vi in scroll-mode | |
setw -g mode-keys vi | |
set -g status-keys vi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment