2021-03-11 07:07:27 -07:00
|
|
|
unbind C-b
|
|
|
|
set-option -g prefix C-o
|
|
|
|
|
2020-08-17 17:07:23 -06:00
|
|
|
set-window-option -g mode-keys emacs
|
|
|
|
set-window-option -g automatic-rename off
|
|
|
|
set-window-option -g base-index 1
|
|
|
|
|
|
|
|
bind-key \\ split-window -h -c '#{pane_current_path}' # vertical pane
|
|
|
|
bind-key - split-window -v -c '#{pane_current_path}' # horizontal pane
|
|
|
|
|
|
|
|
bind-key C-r source-file ~/.tmux.conf \; \
|
|
|
|
display-message "source-file done"
|
|
|
|
|
|
|
|
bind-key m set mouse \; \
|
|
|
|
display-message "toggle mouse"
|
|
|
|
|
|
|
|
bind-key C-s set synchronize-panes \; \
|
|
|
|
display-message "toggle synchronize-panes"
|
|
|
|
|
|
|
|
# stolen from jca
|
2021-03-11 07:08:21 -07:00
|
|
|
bind o send-prefix
|
|
|
|
bind C-o last-window
|
2020-08-17 17:07:23 -06:00
|
|
|
|
|
|
|
bind-key h select-pane -L
|
|
|
|
bind-key j select-pane -D
|
|
|
|
bind-key k select-pane -U
|
|
|
|
bind-key l select-pane -R
|
|
|
|
|
|
|
|
set -g bell-action any
|
|
|
|
|
|
|
|
set -g default-terminal "tmux-256color"
|
|
|
|
|
|
|
|
set -g set-titles on
|
|
|
|
|
|
|
|
set -g automatic-rename
|
|
|
|
set-option -g status-bg colour253
|
|
|
|
set-window-option -g clock-mode-colour colour246
|
|
|
|
set -g clock-mode-style 12
|
|
|
|
set-window-option -g window-status-bell-style fg=white,bg=red
|
|
|
|
|
|
|
|
# Change the default escape-time to 0 (from 500) so emacs will work right
|
|
|
|
set -g escape-time 0
|
|
|
|
|
|
|
|
set -g window-status-current-format '#[bg=colour250]#I:#W•'
|
|
|
|
|
|
|
|
# Left side of status bar
|
|
|
|
set -g status-left-length 50
|
|
|
|
set -g status-left '#[fg=green][#[fg=red]#S:#(~/bin/beat)#[fg=black,dim]#[fg=green]] '
|
|
|
|
set -g status-right-length 50
|
|
|
|
set -g status-right '#[fg=green][#[fg=black]#T #(/usr/local/bin/battery -nap)#[fg=green]][#[fg=black]%Y-%m-%d #[fg=black]%I:%M %p#[default]#[fg=green]]'
|
|
|
|
|
|
|
|
set -g window-style 'bg=#DEDEFF'
|
|
|
|
set -g window-active-style 'bg=terminal'
|