From 0b33a8a45420ad5d1fb5313234924c85494b2d44 Mon Sep 17 00:00:00 2001 From: Eric Torres Date: Mon, 26 Dec 2022 05:24:40 -0800 Subject: [PATCH] Change prefix --- tmux/.config/tmux/tmux.conf | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/tmux/.config/tmux/tmux.conf b/tmux/.config/tmux/tmux.conf index 1aedb57..b6c1189 100644 --- a/tmux/.config/tmux/tmux.conf +++ b/tmux/.config/tmux/tmux.conf @@ -1,13 +1,20 @@ -# List of plugins +# Change prefix +unbind C-b +set -g prefix C-a +bind-key C-a send-prefix + +# Plugins set -g @plugin 'tmux-plugins/tpm' set -g @plugin 'tmux-plugins/tmux-sensible' set -g @plugin 'dracula/tmux' -set -s default-terminal 'tmux-256color' # dracula customizations -set -g @dracula-plugins "battery weather time" +set -g @dracula-plugins "weather time" set -g @dracula-show-powerline true set -g @dracula-show-fahrenheit false set -g @dracula-military-time true run '.config/tmux/plugins/tpm/tpm' + +# Terminal appearance +set -g default-terminal "tmux-256color"