dotfiles/dot_tmux.conf.tmpl

106 lines
3.4 KiB
Cheetah
Raw Normal View History

2023-02-11 14:11:00 +01:00
unbind C-b
set -g prefix C-a
bind C-a send-prefix
set -g base-index 1
set -as terminal-overrides ',*:Smulx=\E[4::%p1%dm' # undercurl support
set -as terminal-overrides ',*:Setulc=\E[58::2::%p1%{65536}%/%d::%p1%{256}%/%{255}%&%d::%p1%{255}%&%d%;m' # underscore colours - needs tmux-3.0
2023-02-11 14:11:00 +01:00
# Basic functions
bind -n M-n new-window
bind -n M-- split-window -v
bind -n M-| split-window -h
bind -n M-R command-prompt -I "" "rename-window '%%'"
bind -n M-X confirm-before "kill-window"
bind -n M-x confirm-before "kill-pane"
bind -n M-/ copy-mode
# ALT interface for switching windows
bind -n M-Tab last-window
bind -n M-1 select-window -t 1
bind -n M-2 select-window -t 2
bind -n M-3 select-window -t 3
bind -n M-4 select-window -t 4
bind -n M-5 select-window -t 5
bind -n M-6 select-window -t 6
2023-10-31 07:06:37 +01:00
{{- if eq .chezmoi.os "darwin" }}
bind-key -T copy-mode-vi 'y' send -X copy-pipe-and-cancel 'reattach-to-user-namespace pbcopy'
bind-key -T copy-mode-vi Enter send -X copy-pipe-and-cancel 'reattach-to-user-namespace pbcopy'
bind-key -T copy-mode-vi MouseDragEnd1Pane send -X copy-pipe-and-cancel 'reattach-to-user-namespace pbcopy'
{{- else }}
2023-02-11 14:11:00 +01:00
bind -T copy-mode-vi Enter send-keys -X copy-pipe-and-cancel "xclip -in -selection clipboard"
bind -T copy-mode-vi MouseDragEnd1Pane send -X copy-pipe-and-cancel "xclip -in -selection clipboard"
2023-10-31 07:06:37 +01:00
{{- end }}
2023-02-11 14:11:00 +01:00
# enable vi mode
setw -g mode-keys vi
# don't allow tmux to rename the window based on commands running
set-option -wg automatic-rename off
# address vim mode switching delay (http://superuser.com/a/252717/65504)
set -s escape-time 0
# increase scrollback buffer size
set -g history-limit 50000
# tmux messages are displayed for 4 seconds
set -g display-time 4000
# refresh 'status-left' and 'status-right' more often
set -g status-interval 5
# upgrade $TERM
set -g default-terminal "tmux-256color"
2023-04-30 09:58:35 +02:00
set-option -sa terminal-features ',{{ .term }}:RGB'
2023-02-11 14:11:00 +01:00
# emacs key bindings in tmux command prompt (prefix + :) are better than
# vi keys, even for vim users
set -g status-keys emacs
2023-03-07 16:01:47 +01:00
# Enable mouse mode (tmux 2.1 and above)
set -g mouse on
2023-02-11 14:11:00 +01:00
# focus events enabled for terminals that support them
set -g focus-events on
# super useful when using "grouped sessions" and multi-monitor setup
setw -g aggressive-resize on
2023-02-14 12:13:44 +01:00
set -g default-command {{ .shell }}
set -g default-shell {{ .shell }}
2023-02-11 14:11:00 +01:00
set-option -g status-position top
2024-01-13 22:33:54 +01:00
set -g @catppuccin_window_left_separator ""
set -g @catppuccin_window_right_separator " "
set -g @catppuccin_window_middle_separator " █"
set -g @catppuccin_window_number_position "right"
set -g @catppuccin_window_default_fill "number"
set -g @catppuccin_window_default_text "#W"
set -g @catppuccin_window_current_fill "number"
set -g @catppuccin_window_current_text "#W"
set -g @catppuccin_status_modules_right "directory user host session"
set -g @catppuccin_status_left_separator " "
set -g @catppuccin_status_right_separator ""
set -g @catppuccin_status_right_separator_inverse "no"
set -g @catppuccin_status_fill "icon"
set -g @catppuccin_status_connect_separator "no"
set -g @catppuccin_directory_text "#{pane_current_path}"
2023-02-11 14:11:00 +01:00
# List of plugins
set -g @plugin 'tmux-plugins/tmux-pain-control'
set -g @plugin 'tmux-plugins/tmux-logging'
set -g @plugin 'tmux-plugins/tmux-resurrect'
2024-01-13 22:33:54 +01:00
set -g @plugin 'catppuccin/tmux'
2023-02-14 12:13:44 +01:00
{{- if eq .chezmoi.os "openbsd" }}
set -g @plugin 'tmux-plugins/tmux-battery'
{{- end }}
2023-02-11 14:11:00 +01:00
# Initialize TMUX plugin manager
run -b '~/.tmux/plugins/tpm/tpm'