dotfiles/tmux.conf

36 lines
849 B
Plaintext
Raw Normal View History

2018-11-29 21:13:51 +01:00
# KEYS
2018-09-21 13:37:30 +02:00
# remap prefix from 'C-b' to 'C-a'
unbind C-b
set-option -g prefix C-a
bind-key C-a send-prefix
# remap from 'n' for next to 'space'
setw -g xterm-keys on
bind-key Space next-window
2018-11-29 21:13:51 +01:00
# vim style switch
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
# statusbar
set -g status-right '#[fg=colour242]#S'
2019-02-13 18:53:02 +01:00
set -g status-left ' '
set -g window-status-format '#W'
set -g window-status-current-format '#W'
2018-11-30 12:24:57 +01:00
set -g allow-rename off
2018-09-21 13:37:30 +02:00
# THEME
2019-02-13 18:53:02 +01:00
#### COLOUR
2018-09-21 13:37:30 +02:00
# default statusbar colors
2019-02-13 18:53:02 +01:00
set-option -g status-bg colour232
set-option -g status-fg colour253#yellow
2018-09-21 13:37:30 +02:00
set-option -g status-attr default
# active window title colors
2019-02-13 18:53:02 +01:00
set-window-option -g window-status-current-fg colour231
2018-09-21 13:37:30 +02:00
set-window-option -g window-status-current-bg default
# bell
2019-02-13 18:53:02 +01:00
set-window-option -g window-status-bell-style fg=colour232,bg=colour253