-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtmux.conf
53 lines (37 loc) · 1.48 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
42
43
44
45
46
47
48
49
50
51
52
53
# C-b is not acceptable -- Vim uses it
set -g prefix C-q
unbind C-b
setw -g mode-keys vi
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'bliof/tmux-theme-minimal'
run '~/.tmux/plugins/tpm/tpm'
# Allows for faster key repetition
set -s escape-time 0
# For timuxinator
set-window-option -g pane-base-index 1
# start window indexing at one instead of zero
set-option -g renumber-windows on
set-option -g base-index 1
# Rather than constraining window size to the maximum size of any client
# connected to the *session*, constrain window size to the maximum size of any
# client connected to *that window*. Much more reasonable.
setw -g aggressive-resize on
# Allows us to use C-a a <command> to send commands to a TMUX session inside
# another TMUX session
bind-key q send-prefix
# force a reload of the config file
unbind r
bind r source-file ~/.tmux.conf
# quick pane cycling
unbind C-q
bind C-q select-pane -t :.+
set -g history-limit 100000
#fixes the usage of arrow keys in vim
set-window-option -g xterm-keys on
set -g mouse on
bind-key -T root WheelUpPane if-shell -F -t = "#{alternate_on}" "send-keys -M" "select-pane -t =; copy-mode -e; send-keys -M"
bind-key -T root WheelDownPane if-shell -F -t = "#{alternate_on}" "send-keys -M" "select-pane -t =; send-keys -M"
unbind t
bind t split-window -v "tmux list-sessions | sed -E 's/:.*$//' | grep -v \"^$(tmux display-message -p '#S')\$\" | fzf --reverse | xargs tmux switch-client -t"
bind Left swap-window -t -1
bind Right swap-window -t +1