54 lines
1.2 KiB
Bash
54 lines
1.2 KiB
Bash
# Tmux configuration file
|
|
|
|
set-option -s escape-time 0
|
|
|
|
unbind C-b
|
|
unbind C-a
|
|
set -g prefix C-a
|
|
bind C-a send-prefix
|
|
|
|
unbind Q
|
|
bind Q source-file $XDG_CONFIG_HOME/tmux/tmux.conf \; display "Reloaded config"
|
|
|
|
unbind '\'
|
|
unbind -
|
|
unbind %
|
|
unbind '"'
|
|
|
|
bind '\' split-window -h -c '#{pane_current_path}'
|
|
bind - split-window -v -c '#{pane_current_path}'
|
|
|
|
bind -r h select-pane -L
|
|
bind -r j select-pane -D
|
|
bind -r k select-pane -U
|
|
bind -r l select-pane -R
|
|
|
|
bind -r H resize-pane -L 2
|
|
bind -r J resize-pane -D 2
|
|
bind -r K resize-pane -U 2
|
|
bind -r L resize-pane -R 2
|
|
|
|
bind X confirm kill-window
|
|
bind T confirm kill-session
|
|
|
|
set -g pane-border-indicators colour
|
|
set -g pane-active-border-style fg="#d8a657",bg=default
|
|
set -g pane-border-style fg="#1d2021",bg=default
|
|
set -g pane-border-lines single
|
|
|
|
set -g popup-border-style fg="#d8a657",bg=default
|
|
set -g popup-border-lines rounded
|
|
|
|
set -g clock-mode-colour "#fabd2f"
|
|
|
|
set -g display-panes-active-colour "#d8a657"
|
|
set -g display-panes-time 10000
|
|
|
|
set -g window-size largest
|
|
set -g renumber-windows on
|
|
|
|
set -g status-position bottom
|
|
set -g status-style bg="#1d2021",fg="#d4be98",bold
|
|
set -g status-keys vi
|
|
set -g status-right '#{?client_prefix,#[fg=#000000]#[bg=#fabd2f]#[bold] C-a ,}'
|
|
|