Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # .tmux.conf
- #
- # Prefix is ctrl-b
- set -g mouse on
- # Start numbering at 1
- set -g base-index 1
- setw -g pane-base-index 1 # make pane numbering consistent with windows
- setw -g automatic-rename on # rename window to reflect current program
- set -g renumber-windows on # renumber windows when a window is closed
- set -g set-titles on # set terminal title
- set -g display-panes-time 800 # slightly longer pane indicators display time
- set -g display-time 1000 # slightly longer status messages display time
- # Rather than constraining window size to the maximum size of any client
- # connected to the *session*, constrain window size to the maximum size of any
- # client connected to *that window*. Much more reasonable.
- setw -g aggressive-resize on
- # Automatically set window title
- set-window-option -g automatic-rename on
- set-option -g set-titles on
- bind -n M-Left select-pane -L
- bind -n M-Right select-pane -R
- bind -n M-Up select-pane -U
- bind -n M-Down select-pane -D
- # boost history
- set -g history-limit 5000
- bind | split-window -h
- bind - split-window -v
- bind -n f1 select-window -t :1
- bind -n f2 select-window -t :2
- bind -n f3 select-window -t :3
- bind -n f4 select-window -t :4
- bind -n f5 select-window -t :5
- bind -n f6 select-window -t :6
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement