-
Notifications
You must be signed in to change notification settings - Fork 0
/
tmux.conf
38 lines (28 loc) · 897 Bytes
/
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
unbind C-b
set -g prefix C-Space
bind Space send-prefix
# Prevent tmux from delaying esc
# as this makes vim via tmux annoying
set -s -g escape-time 0
set-window-option -g mode-keys vi
set -g default-shell $SHELL
set -g history-limit 20000
# set -g utf8 on set-window-option -g utf8 on
set -g default-terminal screen-256color
source-file ~/.tmux-system.conf
bind v split-window -h -c "#{pane_current_path}" # Split panes horizontal
bind s split-window -v -c "#{pane_current_path}" # Split panes vertically
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
bind -n C-k clear-history
# set-option -g mouse on
set-option -s set-clipboard off
source ~/.tmux.theme
set-option -g status-right '#(cat ~/.thyme-tmux)'
set-option -g status-interval 1
bind -r C-k resize-pane -U
bind -r C-j resize-pane -D
bind -r C-l resize-pane -R
bind -r C-h resize-pane -L