blob: 02b28e8a1f0644de6344792d0818f747ba181aac (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
set -g default-terminal "xterm-256color"
set -g allow-rename off # Don't allow pane automatic renaming
set -g mouse on # mouse behavior
set -g base-index 1 # start indexing from 1 not 0
set -g pane-base-index 1 # start indexing from 1 not 0
set -g history-limit 10000 # Scroll History limit
set -g display-time 4000 # messages are displayed for 4 seconds
set -g focus-events on # focus events enabled for terminals that support them
set -g status-keys emacs # emacs binding status commands: https://unix.stackexchange.com/questions/383420/
set -s escape-time 50 # lower escape timing from 500ms to 50ms for quicker response to scroll-buffer access.
setw -g alternate-screen on # allow running alternate screen (term feature) on tmux
setw -g mode-keys vi # Vi mode and copy paste
bind-key -T copy-mode-vi 'v' send-keys -X begin-selection
bind-key -T copy-mode-vi 'y' send-keys -X copy-selection-and-cancel
# Load OSX specific configurations to add (fix copy)
if-shell 'test "$(uname)" = "Darwin"' 'source ~/.tmux-osx.conf'
|