diff --git a/deploy.sh b/deploy.sh index ba4d566..5c8a3d0 100755 --- a/deploy.sh +++ b/deploy.sh @@ -6,6 +6,10 @@ echo "Syncing user with hypr..." rsync --recursive $(dirname "$0")/hypr/ ~/.config/hypr echo "Syncing user with nvim..." rsync --recursive $(dirname "$0")/nvim/ ~/.config/nvim +echo "Syncing user with tmux..." +echo " Note: prefix + I for tmux setup" +mkdir -p ~/tmux +rsync --recursive $(dirname "$0")/tmux/tmux.conf ~/.config/tmux/tmux.conf echo "Syncing user with waybar..." rsync --recursive $(dirname "$0")/waybar/ ~/.config/waybar echo "Syncing complete!" diff --git a/tmux/tmux.conf b/tmux/tmux.conf new file mode 100755 index 0000000..fd1c1c3 --- /dev/null +++ b/tmux/tmux.conf @@ -0,0 +1,12 @@ +# Start panels at 1 +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 'catppuccin/tmux' +set -g @catppuccin_flavour 'mocha' # or frappe, latte, mocha +set -g @plugin 'tmux-plugins/tpm' +set -g @plugin 'tmux-plugins/tmux-sensible' +run '/usr/share/tmux-plugin-manager/tpm' diff --git a/update.sh b/update.sh index fd00092..5ee2119 100755 --- a/update.sh +++ b/update.sh @@ -6,6 +6,8 @@ echo "Syncing dotfiles with hypr..." rsync --recursive ~/.config/hypr $(dirname "$0") echo "Syncing dotfiles with nvim..." rsync --recursive ~/.config/nvim $(dirname "$0") +echo "Syncing dotfiles with tmux..." +rsync ~/.config/tmux/tmux.conf $(dirname "$0")/tmux/tmux.conf echo "Syncing dotfiles with waybar..." rsync --recursive ~/.config/waybar $(dirname "$0") echo "Syncing complete!"