mirror of
https://github.com/stevenproctor/dotfiles.git
synced 2026-01-28 08:59:55 -06:00
Initial tmux.conf checkin
This commit is contained in:
36
tmux.conf
Normal file
36
tmux.conf
Normal file
@@ -0,0 +1,36 @@
|
||||
set -g prefix C-a
|
||||
unbind C-b
|
||||
|
||||
set -s escape-time 1
|
||||
|
||||
set -g base-index 1
|
||||
setw -g pane-base-index 1
|
||||
|
||||
bind r source-file ~/.tmux.conf \; display "Reloaded!"
|
||||
|
||||
bind C-a send-prefix
|
||||
|
||||
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 H resize-pane -L 5
|
||||
bind J resize-pane -D 5
|
||||
bind K resize-pane -U 5
|
||||
bind L resize-pane -R 5
|
||||
|
||||
setw -g mode-mouse off
|
||||
|
||||
set -g default-terminal "screen-256color"
|
||||
|
||||
set -g window-status-attr dim
|
||||
set -g window-status-current-attr bright
|
||||
|
||||
setw -g mode-keys vi
|
||||
Reference in New Issue
Block a user