Minimal setup
This commit is contained in:
23
config/tmux.conf
Normal file
23
config/tmux.conf
Normal file
@@ -0,0 +1,23 @@
|
||||
set -g prefix C-b
|
||||
|
||||
set -g status-bg color89
|
||||
set -g status-fg white
|
||||
# set -g default-terminal "screen-256color"
|
||||
set -g set-titles-string "tmux:#I [ #W ]"
|
||||
|
||||
bind R source-file ~/.tmux.conf
|
||||
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 -n C-n new-window
|
||||
bind / command-prompt -p "rename session to: " "rename-session %%"
|
||||
|
||||
set-option -g history-limit 100000
|
||||
setw -g mode-keys vi
|
||||
|
||||
bind b command-prompt -p "bring pane from: " "join-pane -s '%%'"
|
||||
bind s command-prompt -p "send pane to: " "join-pane -t '%%'"
|
||||
Reference in New Issue
Block a user