mirror of
https://github.com/runyanjake/dotfiles.git
synced 2025-10-04 13:57:28 -07:00
102 lines
2.4 KiB
Bash
102 lines
2.4 KiB
Bash
# Custom tmux config.
|
|
# @jrunyan
|
|
# https://github.com/runyanjake/tmux
|
|
|
|
|
|
#------------------------------------------------
|
|
### Function ------------------------------------
|
|
#------------------------------------------------
|
|
|
|
# Set custom prefix key
|
|
unbind C-b
|
|
set -g prefix C-Space
|
|
bind C-Space send-prefix
|
|
|
|
# Reload the tmux configuration with <PREFIX> + r
|
|
bind r source-file ~/.tmux.conf \; display-message "Reloaded tmux.conf!"
|
|
|
|
# Split panes using | and -
|
|
bind | split-window -h
|
|
bind - split-window -v
|
|
unbind '"'
|
|
unbind %
|
|
|
|
# Enable mouse support
|
|
set -g mouse on
|
|
|
|
# Allow the terminal to scrollback
|
|
set -g history-limit 10000
|
|
|
|
# Automatically set window titles
|
|
set -g automatic-rename on
|
|
set-window-option -g automatic-rename on
|
|
#set -g automatic-rename-format "#{pane_current_command}"
|
|
|
|
# Start window numbers from 1 instead of 0
|
|
set -g base-index 1
|
|
set-window-option -g pane-base-index 1
|
|
|
|
# switch panes using Alt-arrow without prefix
|
|
bind -n M-Left select-pane -L
|
|
bind -n M-Right select-pane -R
|
|
bind -n M-Up select-pane -U
|
|
bind -n M-Down select-pane -D
|
|
|
|
|
|
#------------------------------------------------
|
|
### Style ---------------------------------------
|
|
#------------------------------------------------
|
|
|
|
# don't do anything when a 'bell' rings
|
|
set -g visual-activity off
|
|
set -g visual-bell off
|
|
set -g visual-silence off
|
|
setw -g monitor-activity off
|
|
set -g bell-action none
|
|
|
|
# clock mode
|
|
setw -g clock-mode-colour yellow
|
|
|
|
# copy mode
|
|
setw -g mode-style 'fg=black bg=red bold'
|
|
|
|
# panes
|
|
set -g pane-border-style 'fg=red'
|
|
set -g pane-active-border-style 'fg=yellow'
|
|
|
|
# statusbar
|
|
set -g status-position bottom
|
|
set -g status-justify left
|
|
set -g status-style 'fg=red'
|
|
|
|
set -g status-left ''
|
|
set -g status-left-length 10
|
|
|
|
set -g status-right-style 'fg=black bg=yellow'
|
|
set -g status-right '%Y-%m-%d %H:%M '
|
|
set -g status-right-length 50
|
|
|
|
setw -g window-status-current-style 'fg=black bg=red'
|
|
setw -g window-status-current-format ' #I #W #F '
|
|
|
|
setw -g window-status-style 'fg=red bg=black'
|
|
setw -g window-status-format ' #I #[fg=white]#W #[fg=yellow]#F '
|
|
|
|
setw -g window-status-bell-style 'fg=yellow bg=red bold'
|
|
|
|
# messages
|
|
set -g message-style 'fg=yellow bg=red bold'
|
|
|
|
|
|
#------------------------------------------------
|
|
### Plugins -------------------------------------
|
|
#------------------------------------------------
|
|
|
|
# Plugins List
|
|
set -g @plugin 'tmux-plugins/tpm'
|
|
set -g @plugin 'tmux-plugins/tmux-sensible'
|
|
|
|
# Initialize tmux plugin manager (Keep @ bottom of file)
|
|
run ~/.tmux/plugins/tpm/tpm
|
|
|