-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path.tmux.conf
More file actions
35 lines (25 loc) · 890 Bytes
/
.tmux.conf
File metadata and controls
35 lines (25 loc) · 890 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# Turn on mouse support
setw -g mouse on
# Allow xterm titles in terminal window, terminal scrolling with scrollbar
set -g terminal-overrides "xterm*:XT:smcup@:rmcup@"
# Scroll History
set -g history-limit 30000
# Set ability to capture on start and restore on exit window data when running an application
setw -g alternate-screen on
# Lower escape timing from 500ms to 50ms for quicker response to scroll-buffer access.
set -s escape-time 50
# setup | and - for window splitting
unbind %
bind | split-window -h
bind - split-window -v
# colors
set -g default-terminal "tmux-256color"
# title
set -g set-titles on
set -g set-titles-string '#T'
# enable automatic window renaming
set-window-option -g automatic-rename on
# active window title colors
setw -g window-status-current-format "|#I:#W|"
# enable extended keys support for terminals that support it
set -g extended-keys on