forked from LukeSmithxyz/voidrice
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.tmux.conf
34 lines (29 loc) · 769 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
# Remap prefix
set -g prefix C-a
bind C-a send-prefix
unbind C-b
# QoL
set -g history-limit 10000
set -g allow-rename off
set -g mouse on
# Reload config file
bind-key r source-file ~/.tmux.conf
# Switch between panes & windows
unbind-key -T prefix Up
unbind-key -T prefix Down
unbind-key -T prefix Left
unbind-key -T prefix Right
bind-key -n C-S-Up next
bind-key -n C-S-Down prev
bind-key -n C-S-Left prev
bind-key -n C-S-Right next
bind-key -n C-Up select-pane -U
bind-key -n C-Down select-pane -D
bind-key -n C-Left select-pane -L
bind-key -n C-Right select-pane -R
# Search mode vi
set-window-option -g mode-keys vi
set-option -sg escape-time 10
set-option -g default-terminal "st-256color"
set -g default-command "/bin/bash"
set -g set-clipboard on