scripts/applications/tmux.conf

804 B

# set up terminal
set -g default-terminal "screen-256color"
set-option -ga terminal-overrides ",xterm-256color*:Tc:smso="
 
# set up status bar
set -g status-right '#[bg=#241d29]#{pane_title}'
 
set -g status-style 'bg=#0f0c11 fg=#ffffff'
 
set -g message-style 'bg=#241d29'
set -g mode-style 'bg=#241d29'
set -g pane-active-border-style 'bg=#312738'
set -g pane-border-style 'bg=#241d29'
 
setw -g window-status-bell-style 'bg=#241d29'
setw -g window-status-current-style 'bg=#312738 bold'
setw -g window-status-style 'bg=#241d29'
 
# misc. settings
set -s escape-time 0
set -g destroy-unattached on
 
# bindings
bind -n M-Down select-pane -D
bind -n M-Left select-pane -L
bind -n M-Right select-pane -R
bind -n M-Up select-pane -U
 
# set prefix
unbind C-b
set -g prefix C-'\'
bind C-'\' send-prefix