52 lines
1.6 KiB
Bash
52 lines
1.6 KiB
Bash
#=== KEYBINDINGS ====#
|
|
unbind C-b
|
|
set -g prefix C-x
|
|
bind C-x send-prefix
|
|
|
|
# Create new session
|
|
bind S command-prompt -p "New Session:" "new-session -A -s '%%'"
|
|
bind K confirm kill-session
|
|
set-option -g detach-on-destroy off
|
|
|
|
#=== LAYOUT ===#
|
|
set -g renumber-window on
|
|
set -g base-index 1
|
|
setw -g pane-base-index 1
|
|
bind c new-window -c "#{pane_current_path}"
|
|
|
|
# Fix Tmux for colors
|
|
set-option -a terminal-features 'xterm-256color:RGB'
|
|
set -g allow-passthrough on
|
|
set -ga update-environment TERM
|
|
set -ga update-environment TERM_PROGRAM
|
|
|
|
#=== PLUGINS ===#
|
|
set -g @plugin 'tmux-plugins/tpm'
|
|
set -g @plugin 'tmux-plugins/tmux-sensible'
|
|
set -g @plugin 'tmux-plugins/tmux-open'
|
|
set -g @plugin 'wfxr/tmux-power'
|
|
set -g @plugin 'catppuccin/tmux'
|
|
set-option -g @plugin 'b0o/tmux-autoreload'
|
|
|
|
# Customizing Catppuccin theme
|
|
set -g @catppuccin_flavour 'mocha'
|
|
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_fill "icon"
|
|
set -g @catppuccin_status_connect_separator "no"
|
|
set -g @catppuccin_directory_text "#{pane_current_path}"
|
|
set-option -g status-position top
|
|
|
|
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
|
|
run '~/.tmux/plugins/tpm/tpm'
|
|
|