new tmux automatic installer

This commit is contained in:
Robin
2025-07-24 22:31:27 +02:00
parent 86079040ad
commit f49aed3fb1
2 changed files with 13 additions and 5 deletions

View File

@@ -1,6 +1,11 @@
#set-option -g status-position top
#set-option -g status on
#set-option -g status-position top
#check if tpm for tmux is installed, if not it will install it for you
run-shell -b '
if [[ -e "$HOME/.config/tmux/plugins/" ]]; then
echo "you have tpm installed"
else
git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm
fi
'
set-option -sa terminal-overrides ",xterm*:Tc"
set -g mouse on
@@ -13,9 +18,11 @@ bind C-Space send-prefix
bind -n M-H previous-window
bind -n M-L next-window
bind r source-file ~/.config/tmux/tmux.conf
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
@@ -26,9 +33,9 @@ set -g @catppuccin_flavor 'latte'
set -g @plugin "tmux-plugins/tpm"
set -g @plugin "tmux-plugins/tmux-sensible"
set -g @plugin "christoomey/vim-tmux-navigator"
#set -g @plugin 'dreamsofcode-io/catppuccin-tmux'
set -g @plugin 'catppuccin/tmux#v1.0.3'
set -g @catppuccin_window_status_style "rounded"
# Make the status line more pleasant.
set -g status-right-length 100
set -g status-left-length 100