From 000db5161a8cdbd5b06b802feecdff176fd616d5 Mon Sep 17 00:00:00 2001 From: Danny Holman Date: Fri, 2 Apr 2021 20:49:02 -0500 Subject: tmux uses different colors now And yes it is spelled with no 'u' Signed-off-by: Danny Holman --- .tmux.conf | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/.tmux.conf b/.tmux.conf index 5e82cbf..0826c3a 100644 --- a/.tmux.conf +++ b/.tmux.conf @@ -1,3 +1,31 @@ +# Keymap +unbind C-b +set-option -g prefix C-a +bind C-a send-prefix +unbind '"' +unbind % +bind \\ split-window -h +bind - split-window -v +bind r source-file ~/.tmux.conf +bind h select-pane -L +bind l select-pane -R +bind j select-pane -D +bind k select-pane -U +bind -r C-h resize-pane -L +bind -r C-l resize-pane -R +bind -r C-j resize-pane -D +bind -r C-k resize-pane -U + +# Statusbar +set -g status-position bottom +set -g status-justify left +set -g status-style 'bg=colour45 fg=colour0' +set -g status-left '' +set -g status-right '' + +# Terminal settings set -g default-terminal "tmux-256color" set -g terminal-overrides ",xterm-termite:Tc" + +# Mouse set -g mouse on -- cgit v1.2.3