-
Notifications
You must be signed in to change notification settings - Fork 0
/
.tmux.conf
42 lines (32 loc) · 1.77 KB
/
.tmux.conf
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
36
37
38
39
40
41
###############################################################################
###############################################################################
#### Controls ####
###############################################################################
###############################################################################
set-option -g mouse on
# Use the correct hotkeys when navigating buffers
set-window-option -g mode-keys vi
# Fix delayed ESC in tmux (see https://github.com/neovim/neovim/wiki/FAQ#esc-in-tmux-or-gnu-screen-is-delayed)
set -sg escape-time 10
# Use spacebar instead of b as prefix. Like, CTRL+B is one of the most
# uncomfortable chords imaginable
unbind C-b
set -g prefix C-Space
bind Space send-prefix
###############################################################################
###############################################################################
#### Display ####
###############################################################################
###############################################################################
# Enable changes to the title bar and set the title bar to show the title of
# the active window
set-option -g set-titles on
set-option -g set-titles-string '#T'
# Name panes after current working directory and command
set-option -g status-interval 5
set-option -g automatic-rename on
set-option -g automatic-rename-format '#{b:pane_current_path}:#{pane_current_command}'
# Set colors appropriately (using case/esac for POSIX compatibility)
if 'case "$TERM" in *256color) true;; *) false;; esac' \
'set-option -g default-terminal screen-256color' \
'set-option -g default-terminal screen'