blob: 61ea16c186e156f6c9853a3b67386c0ee6065d11 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# tmate uses default C=b (whilst my tmux uses C-a)
#
# ln -s ~/.vim/tmate.conf ~/.tmate.conf
#
# 1. detach your existing tmux session
# 2. start tmate
# 3. inside tmate: TMUX='' tmux attach
# invisible
set -g status off
# avoid delay and ESC behaving weird
set -s escape-time 0
# for vim themes
set -g default-terminal "tmux-256color"
# For vim plugins relaying on focus events
set -g focus-events on
|