35 lines
1,007 B
Bash
35 lines
1,007 B
Bash
#Add a mapping for reloading the conf file
|
|
bind r source-file ~/.tmux.conf \; display-message "RELOADING CONFIGURATION FILE…"
|
|
|
|
# remap prefix from 'C-b' to 'C-a'
|
|
unbind C-b
|
|
set-option -g prefix C-a
|
|
bind-key C-a send-prefix
|
|
|
|
# Enable mouse control (clickable windows, panes, resizable panes)
|
|
set -g mouse on
|
|
|
|
set -g status-style bg=white,fg=black
|
|
set -g window-active-style bg=black
|
|
set -g window-style bg=#212121
|
|
|
|
set -g pane-border-style fg=gray
|
|
set -g pane-border-lines heavy
|
|
set -g pane-active-border-style fg=yellow
|
|
# set -g pane-border-lines double
|
|
set -g pane-border-status bottom
|
|
set -g pane-border-format ''
|
|
|
|
set -g window-status-current-format '[#I:#W]'
|
|
set -g window-status-format '#I:#W'
|
|
set -g window-status-current-style fg=yellow
|
|
|
|
set-option -g status-right ""
|
|
set-option -g status-left ""
|
|
set -g status-style bg=default
|
|
|
|
bind-key H display-popup -E "htop"
|
|
|
|
bind '"' split-window -c "#{pane_current_path}"
|
|
bind % split-window -h -c "#{pane_current_path}"
|
|
bind c new-window -c "~/Documents"
|