45 lines
1.2 KiB
Bash
45 lines
1.2 KiB
Bash
# List of plugins
|
|
set -g @plugin 'tmux-plugins/tpm'
|
|
set -g @plugin 'tmux-plugins/tmux-sensible'
|
|
set -g @plugin 'christoomey/vim-tmux-navigator'
|
|
set -g @plugin 'catppuccin/tmux#latest'
|
|
set -g @plugin 'tmux-plugins/tmux-yank'
|
|
|
|
|
|
# set the control character to Ctrl+Spacebar (instead of Ctrl+B)
|
|
set -g prefix C-space
|
|
unbind-key C-b
|
|
bind-key C-space send-prefix
|
|
|
|
# set new panes to open in current directory
|
|
bind c new-window -c "#{pane_current_path}"
|
|
bind '"' split-window -c "#{pane_current_path}"
|
|
bind % split-window -h -c "#{pane_current_path}"
|
|
|
|
# start windows and panes at 1 instead of 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
|
|
|
|
set -g @catppuccin_flavour 'frappe' # latte,frappe, macchiato or mocha
|
|
|
|
# neovim compatibility
|
|
set-option -sg escape-time 10
|
|
set-option -g focus-events on
|
|
set-option -a terminal-features 'xterm*:RGB'
|
|
|
|
# enable selecting panes with mouse
|
|
set -g mouse on
|
|
|
|
# enable vi keys in copy mode
|
|
setw -g mode-keys vi
|
|
|
|
# remove confirmation on killing panes and windows
|
|
bind-key & kill-window
|
|
bind-key x kill-pane
|
|
|
|
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
|
|
run '~/.tmux/plugins/tpm/tpm'
|
|
|
|
|