From 1acc226a2f0902dfd8089c59cab33e02df18f715 Mon Sep 17 00:00:00 2001 From: Xander Swan Date: Wed, 3 Dec 2025 10:00:41 -0500 Subject: Add tmux --- .config/tmux/tmux.conf | 14 ++++++++++++++ update.sh | 5 ++++- 2 files changed, 18 insertions(+), 1 deletion(-) 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..35cf423 --- /dev/null +++ b/.config/tmux/tmux.conf @@ -0,0 +1,14 @@ +set-option -sa terminal-overrides ",xterm*:Tc" + +unbind C-b +set -g prefix C-s + +bind v split-window -v -c "#{pane_current_path}" +bind h split-window -h -c "#{pane_current_path}" + +set -g @plugin "tmux-plugins/tpm" +set -g @plugin "tmux-plugins/tmux-sensible" +set -g @plugin "christoomey/vim-tmux-navigator" +set -g @plugin 'maxpetretta/tmux-monokai-pro' + +run "~/.tmux/plugins/tpm/tpm" diff --git a/update.sh b/update.sh index 94e29f8..aae3a8f 100644 --- a/update.sh +++ b/update.sh @@ -9,5 +9,8 @@ cp -r ~/.config/nvim ./.config/ rm -rf ./.config/nvim/plugin/ # i3 - cp -r ~/.config/i3 ./.config + +# tmux +cp -r ~/.config/tmux ./.config/ +rm -rf ./.config/tmux/plugins/ -- cgit v1.3-2-g0d8e