From 871a42830ef83d521d8e9c00fffb0f247de94f54 Mon Sep 17 00:00:00 2001 From: Matt Turner Date: Fri, 24 May 2024 20:46:24 -0400 Subject: tmux: Add plugins --- tmux/.config/tmux/tmux.conf | 25 +++++++++++++++++++++---- 1 file changed, 21 insertions(+), 4 deletions(-) diff --git a/tmux/.config/tmux/tmux.conf b/tmux/.config/tmux/tmux.conf index 26ecf5f..f13e41b 100644 --- a/tmux/.config/tmux/tmux.conf +++ b/tmux/.config/tmux/tmux.conf @@ -1,7 +1,24 @@ -set-option -g default-shell $SHELL -set -g prefix C-a +set-option -sa terminal-features ',xterm-256color:RGB' + unbind-key C-b bind-key C-a send-prefix +set -g prefix ^A +set -g base-index 1 # start indexing windows at 1 instead of 0 +set -g detach-on-destroy off # don't exit from tmux when closing a session +set -g escape-time 0 # zero-out escape time delay +set -g history-limit 1000000 # increase history size (from 2,000) +set -g renumber-windows on # renumber all windows when any window is closed +set -g set-clipboard on # use system clipboard +set -g default-terminal "${TERM}" +set -g default-shell "${SHELL}" +set -g mouse +set -g pane-active-border-style 'fg=magenta,bg=default' +set -g pane-border-style 'fg=brightblack,bg=default' +set -gw mode-keys vi -set-option -g mouse -set-option -sa terminal-features ',xterm-256color:RGB' +set -g @plugin 'tmux-plugins/tpm' +set -g @plugin 'tmux-plugins/tmux-sensible' +set -g @plugin 'joshmedeski/tmux-nerd-font-window-name' +set -g @plugin 'wfxr/tmux-fzf-url' + +run '~/.tmux/plugins/tpm/tpm' -- cgit v1.2.3