From 05ddbbe004b60683df62c77c5fd419a6d02ed857 Mon Sep 17 00:00:00 2001 From: Ryan Chan Date: Fri, 21 Oct 2022 09:58:27 +0100 Subject: [PATCH] Restore simplified version of original tmux config --- .tmux.conf | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .tmux.conf diff --git a/.tmux.conf b/.tmux.conf new file mode 100644 index 0000000..86a0ae4 --- /dev/null +++ b/.tmux.conf @@ -0,0 +1,29 @@ +# Key bindings +unbind-key C-b +set-option -g prefix C-a +bind-key C-a send-prefix + +unbind-key ! +bind-key ! respawn-pane -k + +unbind-key Space +bind-key Space select-layout -E + +bind-key Escape copy-mode +set-window-option -g mode-keys vi + +# Misc. options +set-option -g visual-activity on +set-option -g escape-time 200 +set-option -g history-limit 10000 +set-option -g default-terminal "tmux-256color" +# Use non-login shells +set-option -g default-command "${SHELL}" + +# Apperance customization +set-option -g status-position bottom +set-option -g status-justify right + +set-window-option -g automatic-rename on +set-window-option -g window-status-format " #W " +set-window-option -g window-status-current-format " #[underscore]#W#[none] " -- 2.45.2