Skip to content

Latest commit

 

History

History
72 lines (52 loc) · 1.59 KB

tmux.org

File metadata and controls

72 lines (52 loc) · 1.59 KB

Tmux

Config file

Prefix config

set -g prefix C-l
set -g base-index 1
bind C-l send-prefix
unbind C-b

Terminal options

set -g default-terminal "xterm"
set-option -g default-command zsh

Configuration reloading

bind r source-file ~/.tmux.conf \; display "Reloaded!"

Movement keybindings

bind | split-window -h
bind - split-window -v

bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R

#bind -r C-h select-window -t :-
#bind -r C-l select-window -t :+

bind -r H resize-pane -L 5
bind -r J resize-pane -D 5
bind -r K resize-pane -U 5
bind -r L resize-pane -R 5

Status Bar

set -g status-utf8 on
set -g status-fg white
set -g status-bg black

set -g status-left "[#S]"
setw -g window-status-fg cyan
set -g window-status-current-attr underscore

set -g status-right "\"#H\" %R #(volume) #(battery)"

Emacs mode-keys

set-window-option -g mode-keys emacs

Visual activity monitoring

setw -g monitor-activity on
set -g visual-activity on