27 lines
685 B
Bash
27 lines
685 B
Bash
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}"
|