dotfiles/conf/tmux.conf

42 lines
1.6 KiB
Plaintext
Raw Normal View History

2020-05-25 14:27:08 +02:00
set -g default-terminal "xterm-256color"
2016-01-18 15:39:28 +01:00
set -g base-index 1
set -g renumber-windows on
set -g set-titles on
2018-05-16 16:33:45 +02:00
set -g mouse off
2016-01-18 15:39:28 +01:00
setw -g aggressive-resize on
setw -g automatic-rename on
2013-08-19 11:42:09 +02:00
2020-03-19 00:28:22 +01:00
# binds
2016-01-18 15:39:28 +01:00
unbind-key S
2013-08-19 11:42:09 +02:00
set -g prefix C-a
bind a send-prefix
bind : command-prompt
2020-03-10 15:52:57 +01:00
bind " " next-window
2013-08-19 11:42:09 +02:00
bind c new-window
bind d detach
2020-03-10 15:52:57 +01:00
bind ^C new-window
bind ^D detach
2013-08-19 11:42:09 +02:00
bind | split-window -h
bind - split-window -v
2020-03-19 00:28:22 +01:00
# status line
2020-02-05 16:46:19 +01:00
set -g status "on"
2020-03-19 00:28:22 +01:00
set -g status-position top
2020-03-10 15:52:57 +01:00
set -g status-style "none,bg=colour238"
set -g status-justify "left"
2020-02-05 16:46:19 +01:00
set -g status-left-style "none"
set -g status-right-style "none"
2020-03-10 15:52:57 +01:00
set -g status-left-length "100"
set -g status-right-length "100"
set -g pane-border-style "fg=colour240"
2020-02-06 14:08:14 +01:00
set -g pane-active-border-style "fg=colour117"
set -g message-style "fg=colour252,bg=colour240"
2020-03-10 15:52:57 +01:00
set -g message-command-style "fg=colour252,bg=colour240"
2020-02-06 14:08:14 +01:00
set -g status-left "#[fg=colour238,bg=colour117] #S #[fg=colour117,bg=colour238,nobold,nounderscore,noitalics]"
2020-03-10 15:52:57 +01:00
set -g status-right "#[fg=colour240,bg=colour238,nobold,nounderscore,noitalics]#[fg=colour247,bg=colour240]#[fg=colour244,bg=colour240,nobold,nounderscore,noitalics]#[fg=colour238,bg=colour244] #h "
setw -g window-status-style "none,fg=colour248,bg=colour238"
setw -g window-status-separator ""
setw -g window-status-activity-style "none"
2020-02-06 14:08:14 +01:00
setw -g window-status-format "#[fg=colour248,bg=colour238] #I #[fg=colour248,bg=colour238] #W "
setw -g window-status-current-format "#[fg=colour238,bg=colour240,nobold,nounderscore,noitalics]#[fg=colour252,bg=colour240] #I #[fg=colour252,bg=colour240] #W #[fg=colour240,bg=colour238,nobold,nounderscore,noitalics]"