-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
64 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,65 @@ | ||
# Fix colors | ||
set -g default-terminal "screen-256color" | ||
|
||
# Remap prefix | ||
unbind C-b | ||
set-option -g prefix C-a | ||
bind-key C-a send-prefix | ||
|
||
|
||
# Remap pane splits | ||
bind | split-window -h | ||
bind - split-window -v | ||
unbind '"' | ||
unbind % | ||
|
||
# Reload conf file | ||
bind r source-file ~/.tmux.conf | ||
|
||
|
||
# Pane Navigation | ||
bind -n M-Left select-pane -L | ||
bind -n M-Right select-pane -R | ||
bind -n M-Up select-pane -U | ||
bind -n M-Down select-pane -D | ||
|
||
|
||
# UI Theme | ||
# DESIGN TWEAKS | ||
|
||
# don't do anything when a 'bell' rings | ||
set -g visual-activity off | ||
set -g visual-bell off | ||
set -g visual-silence off | ||
setw -g monitor-activity off | ||
set -g bell-action none | ||
|
||
# clock mode | ||
setw -g clock-mode-colour colour1 | ||
|
||
# copy mode | ||
setw -g mode-style 'fg=colour1 bg=colour18 bold' | ||
|
||
# pane borders | ||
set -g pane-border-style 'fg=colour1' | ||
set -g pane-active-border-style 'fg=colour3' | ||
|
||
# statusbar | ||
set -g status-position bottom | ||
set -g status-justify left | ||
set -g status-style 'fg=colour1' | ||
set -g status-left '' | ||
set -g status-right '%Y-%m-%d %H:%M ' | ||
set -g status-right-length 50 | ||
set -g status-left-length 10 | ||
|
||
setw -g window-status-current-style 'fg=colour0 bg=colour1 bold' | ||
setw -g window-status-current-format ' #I #W #F ' | ||
|
||
setw -g window-status-style 'fg=colour1 dim' | ||
setw -g window-status-format ' #I #[fg=colour7]#W #[fg=colour1]#F ' | ||
|
||
setw -g window-status-bell-style 'fg=colour2 bg=colour1 bold' | ||
|
||
# messages | ||
set -g message-style 'fg=colour2 bg=colour0 bold' |