logo

dotfiles

My dotfiles, one branch per machine
commit: f7cbb3abf2333528ce13d638e152ad7bb5e649f2
parent: ea722a156a7248ab0e5a46d1a4d1b1893fafa255
Author: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Date:   Tue,  1 Jan 2019 05:18:56 +0100

.tmux.conf: Add

Diffstat:

A.tmux.conf54++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 54 insertions(+), 0 deletions(-)

diff --git a/.tmux.conf b/.tmux.conf @@ -0,0 +1,54 @@ +set -g mouse on +set -g set-titles on + +set -g mode-keys vi + +set -g status-left '#[session_id]#[S]#[T] ' +set -g status-right ' #H' +set -g status-right-length 70 + +set -g base-index 1 + +bind-key -n M-q kill-pane \; select-layout +bind-key -n M-n split-window \; select-layout + +bind-key -n M-d select-layout tiled +bind-key -n M-s select-layout main-vertical \; swap-pane -s 0 +bind-key -n M-m select-layout main-horizontal \; swap-pane -s 0 + +bind-key -n M-h select-pane -L +bind-key -n M-j select-pane -D +bind-key -n M-k select-pane -U +bind-key -n M-l select-pane -R + +#### COLOUR (Solarized dark) + +# default statusbar colors +set-option -g status-bg black #base02 +set-option -g status-fg yellow #yellow +set-option -g status-attr default + +# default window title colors +set-window-option -g window-status-fg brightblue #base0 +set-window-option -g window-status-bg default +#set-window-option -g window-status-attr dim + +# active window title colors +set-window-option -g window-status-current-fg brightred #orange +set-window-option -g window-status-current-bg default +#set-window-option -g window-status-current-attr bright + +# pane border +set-option -g pane-border-fg black #base02 +set-option -g pane-active-border-fg brightgreen #base01 + +# message text +set-option -g message-bg black #base02 +set-option -g message-fg brightred #orange + +# pane number display +set-option -g display-panes-active-colour blue #blue +set-option -g display-panes-colour brightred #orange + +# clock +set-window-option -g clock-mode-colour green #green