Set of scripts used for various projects.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- # macosx tmux doesn't support reverse video for nvi
- # https://github.com/tmux/tmux/issues/2262
- set -g default-terminal "xterm-256color"
-
- unbind C-b
- set -g prefix C-a
- bind C-a send-prefix
-
- bind ^L refresh-client
- set-window-option -g mode-keys vi
-
- bind < resize-pane -L 4
- bind > resize-pane -R 4
- bind - resize-pane -D 4
- bind + resize-pane -U 4
-
- set -g mode-mouse off
- set -g mouse-resize-pane off
- set -g mouse-select-pane off
- set -g mouse-select-window off
-
- bind k select-pane -U
- bind j select-pane -D
- bind h select-pane -L
- bind l select-pane -R
|