tmux/tmux.conf

45 lines
1.2 KiB
Plaintext

set -ag terminal-overrides ",xterm-256color:RGB"
set -g default-terminal "screen-256color"
set -g mouse on
# ---- Change prefix key
unbind C-b
set -g prefix C-x
bind C-x send-prefix
# ---- Change split bindings
unbind '"'
unbind %
bind h split-window -h
bind v split-window -v
# ---- Disable kill pane validation
bind x kill-pane
#---------------------------------------------------------- Plugins
set -g @plugin 'tmux-plugin/tpm'
set -g @plugin 'tmux-plugin/tmux-sensible'
set -g @plugin 'catppuccin/tmux'
set -g @catppuccin_window_left_separator "█"
set -g @catppuccin_window_right_separator "█ "
set -g @catppuccin_window_number_position "right"
set -g @catppuccin_window_middle_separator " █"
set -g @catppuccin_window_default_fill "number"
set -g @catppuccin_window_current_fill "number"
set -g @catppuccin_window_current_text "#{pane_current_path}"
set -g @catppuccin_status_modules_right "application session date_time"
set -g @catppuccin_status_left_separator ""
set -g @catppuccin_status_right_separator " "
set -g @catppuccin_status_right_separator_inverse "yes"
set -g @catppuccin_status_fill "all"
set -g @catppuccin_status_connect_separator "no"
run '~/.tmux/plugins/tpm/tpm'