Files
dotfiles/tmux/.tmux.conf
Fabio Scotto di Santolo 1449549b68 Update tmux config
2024-07-15 16:19:11 +02:00

24 lines
625 B
Bash

# Change command shortcut
unbind C-b
set -g prefix C-x
bind C-x send-prefix
set -g renumber-window on
set -g base-index 1
setw -g pane-base-index 1
bind c new-window -c "#{pane_current_path}"
# List of plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'erikw/tmux-powerline'
set -g @plugin 'tmux-plugins/tmux-open'
set -g @plugin 'wfxr/tmux-power'
set-option -g @plugin 'b0o/tmux-autoreload'
# Customizing Tmux Power theme
set -g @tmux_power_theme '#99c1f1'
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
run '~/.tmux/plugins/tpm/tpm'