2021-11-18 08:59:41 +00:00
|
|
|
# Send prefix - Ctrl+a
|
2021-10-22 11:45:20 +00:00
|
|
|
set-option -g prefix C-a
|
|
|
|
unbind-key C-a
|
|
|
|
bind-key C-a send-prefix
|
|
|
|
|
2021-11-18 08:59:41 +00:00
|
|
|
# Use Alt+[hjkl] to switch panes - also (esc - h|j|k|l)
|
|
|
|
bind -n M-h select-pane -L
|
|
|
|
bind -n M-l select-pane -R
|
|
|
|
bind -n M-k select-pane -U
|
|
|
|
bind -n M-j select-pane -D
|
2021-10-22 11:45:20 +00:00
|
|
|
|
2021-11-18 08:59:41 +00:00
|
|
|
# <prefix>-h|l|Left|Right
|
|
|
|
bind-key h previous-window
|
|
|
|
bind-key Right previous-window
|
|
|
|
bind-key l next-window
|
|
|
|
bind-key Left next-window
|
2021-10-22 11:45:20 +00:00
|
|
|
|
|
|
|
# Mouse mode
|
|
|
|
setw -g mouse on
|
|
|
|
|
|
|
|
# Set easier window split keys
|
|
|
|
bind-key | split-window -h -c "#{pane_current_path}"
|
|
|
|
bind-key \\ split-window -h -c "#{pane_current_path}"
|
|
|
|
bind-key - split-window -v -c "#{pane_current_path}"
|
|
|
|
|
|
|
|
# Easy config reload
|
|
|
|
bind-key r source-file ~/.tmux.conf \; display-message "~/.tmux.conf reloaded."
|
|
|
|
############################
|
|
|
|
# Themes
|
|
|
|
###########################
|
|
|
|
# Nord theme
|
|
|
|
set -g @plugin "arcticicestudio/nord-tmux"
|
|
|
|
# Gruvbox Theme
|
|
|
|
# set -g @plugin 'egel/tmux-gruvbox'
|
|
|
|
# set -g @tmux-gruvbox 'dark' # or 'light'
|
|
|
|
|
|
|
|
|
|
|
|
# Tmux yank (For clipboard integration)
|
|
|
|
set -g @plugin 'tmux-plugins/tmux-yank'
|
|
|
|
# Mouse select to clipboard
|
|
|
|
set -g @yank_selection_mouse 'clipboard' # or 'primary' or 'secondary'
|
|
|
|
|
|
|
|
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
|
|
|
|
run '~/.tmux/plugins/tpm/tpm'
|
|
|
|
|
|
|
|
# Buffer line size (History)
|
|
|
|
set -g history-limit 5000
|
|
|
|
|
|
|
|
# Use Ctrl-K to clear buffer
|
|
|
|
bind -n C-k clear-history
|
|
|
|
|
|
|
|
# Default Colors
|
|
|
|
set -g default-terminal "xterm-256color"
|
2021-11-18 08:59:41 +00:00
|
|
|
|
|
|
|
# Home/End support
|
|
|
|
bind -n End send-key C-e
|
|
|
|
bind -n Home send-key C-a
|