2013-01-07 09:51:06 -08:00
|
|
|
# tmux config
|
|
|
|
# Eryn Wells <eryn@erynwells.me>
|
2012-03-18 13:09:55 -07:00
|
|
|
|
2013-01-07 09:51:06 -08:00
|
|
|
set -g prefix C-f
|
2013-01-03 10:01:36 -08:00
|
|
|
|
2013-01-07 09:51:06 -08:00
|
|
|
# Don't destroy sessions that have no clients attached.
|
|
|
|
set -g exit-unattached off
|
2013-01-03 10:01:36 -08:00
|
|
|
|
|
|
|
set -g default-terminal "screen-256color"
|
|
|
|
set -g history-limit 10000
|
|
|
|
# Bells from everywhere
|
2013-01-07 09:51:06 -08:00
|
|
|
set -g bell-action any
|
|
|
|
set -g visual-bell off
|
2013-01-03 10:01:36 -08:00
|
|
|
|
|
|
|
# Pass xterm titles through
|
|
|
|
set -g set-titles on
|
|
|
|
set -g set-titles-string "#T"
|
2022-05-22 17:03:00 -07:00
|
|
|
set -g allow-rename on
|
2012-03-18 13:09:55 -07:00
|
|
|
|
2013-01-07 09:51:06 -08:00
|
|
|
# Use vi keys for copy mode
|
|
|
|
set -g mode-keys vi
|
|
|
|
set -g repeat-time 0
|
2012-03-18 13:09:55 -07:00
|
|
|
|
2022-05-22 15:30:38 -07:00
|
|
|
#
|
|
|
|
# STATUS BAR
|
|
|
|
#
|
|
|
|
|
|
|
|
set -g status-style bg=black
|
|
|
|
set -g status-left " #S "
|
|
|
|
set -g status-left-style bg=green,fg=black
|
2022-06-01 14:47:21 -07:00
|
|
|
set -g status-right "#[bg=red,fg=white] #h #[bg=blue,fg=white] %a %b %e, %R #[default]"
|
2012-03-14 13:59:10 -07:00
|
|
|
|
2013-01-03 10:01:36 -08:00
|
|
|
# Start window and pane indexing from 1 instead of 0
|
2022-05-22 17:03:00 -07:00
|
|
|
set -g base-index 1
|
|
|
|
set -g pane-base-index 1
|
2012-03-14 13:59:10 -07:00
|
|
|
|
2013-03-12 11:01:09 -07:00
|
|
|
# Tabs like this: "(<index>:<window_name>)"
|
2022-11-16 15:33:47 +00:00
|
|
|
setw -g window-status-style "fg=white,bg=black"
|
|
|
|
setw -g window-status-format " #{?#{==:#W,tmux},...,#I} #W "
|
|
|
|
setw -g window-status-current-style "fg=white,bg=blue"
|
|
|
|
#setw -g window-status-current-format " #I #W "
|
|
|
|
setw -g window-status-current-format " #{?#{==:#W,tmux},...,#I} #W "
|
|
|
|
setw -g window-status-separator ""
|
2013-03-12 11:01:09 -07:00
|
|
|
|
2022-05-22 17:03:00 -07:00
|
|
|
set -g window-status-bell-style "bg=red"
|
|
|
|
set -g window-status-activity-style "bg=red"
|
2012-08-07 13:04:05 -07:00
|
|
|
|
2022-05-22 17:03:00 -07:00
|
|
|
set -g alternate-screen on
|
2012-03-14 13:59:10 -07:00
|
|
|
|
2022-05-22 17:03:00 -07:00
|
|
|
set -g clock-mode-style 24
|
2012-03-14 13:59:10 -07:00
|
|
|
|
2014-02-26 10:37:34 -08:00
|
|
|
# Lock the screen after 120 seconds
|
2022-05-22 17:03:00 -07:00
|
|
|
set -g lock-after-time 0
|
|
|
|
set -g lock-command "tmux clock-mode"
|
|
|
|
|
|
|
|
#
|
|
|
|
# KEY BINDINGS
|
|
|
|
#
|
2014-02-26 10:37:34 -08:00
|
|
|
|
2012-03-14 13:59:10 -07:00
|
|
|
bind-key C-a last-window
|
2016-05-02 10:40:05 -07:00
|
|
|
# TODO: Decide if this should have a -n (allow invoking the command without the leader).
|
2016-09-16 14:08:27 -07:00
|
|
|
bind-key C-k clear-history
|
2018-04-08 07:32:51 -07:00
|
|
|
|
2022-05-22 15:30:38 -07:00
|
|
|
bind-key C-h select-pane -L
|
|
|
|
bind-key C-j select-pane -D
|
|
|
|
bind-key C-k select-pane -U
|
|
|
|
bind-key C-l select-pane -R
|