From 57cc17ff654d5e0be6813f51200edba13f874ac1 Mon Sep 17 00:00:00 2001 From: stev Date: Sun, 23 Jun 2024 11:17:57 +0200 Subject: [PATCH] add tmux config --- .config/tmux/tmux.conf | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .config/tmux/tmux.conf diff --git a/.config/tmux/tmux.conf b/.config/tmux/tmux.conf new file mode 100644 index 0000000..b54e26d --- /dev/null +++ b/.config/tmux/tmux.conf @@ -0,0 +1,27 @@ +set-option -sa terminal-overrides ",xterm*:Tc" +set -g mouse on + +unbind C-b +set -g prefix C-Space +bind C-Space send-prefix + +# Start windows and panes at 1, not 0 +set -g base-index 1 +set -g pane-base-index 1 +set-window-option -g pane-base-index 1 +set-option -g renumber-windows on + +# Plugins +set -g @plugin 'tmux-plugins/tpm' +set -g @plugin 'tmux-plugins/tmux-sensible' +set -g @plugin 'tmux-plugins/tmux-yank' +set -g @plugin 'tmux-plugins/tmux-resurrect' +set -g @plugin 'christoomey/vim-tmux-navigator' + +set -g @plugin 'catppuccin/tmux' + +run '~/.tmux/plugins/tpm/tpm' + +# keybindings +#bind "-" split-window -v -c "#{pane_current_path}" +#bind "\" split-window -h -c "#{pane_current_path}"