-
Notifications
You must be signed in to change notification settings - Fork 0
/
.tmux.conf
39 lines (33 loc) · 946 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
39
unbind C-b
set -g prefix C-Space
bind Space send-prefix
# Start counting windows from 1
set -g base-index 1
# Start counting panes from 1
set -g pane-base-index 1
# Stop naming windows
set-option -g allow-rename off
# Remove kjhl bindings
unbind-key k
unbind-key j
unbind-key h
unbind-key l
unbind-key o
unbind-key O
# Move between panes Vim style
bind-key k select-pane -U
bind-key j select-pane -D
bind-key h select-pane -L
bind-key l select-pane -R
bind-key O select-layout even-vertical
bind-key o select-layout even-horizontal
# Use vim keybindings in copy mode
setw -g mode-keys vi
set-window-option -g mouse on
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'tmux-plugins/tmux-yank'
set -g @plugin 'nhdaly/tmux-scroll-copy-mode'
set -g @plugin 'seebi/tmux-colors-solarized'
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
run '~/.tmux/plugins/tpm/tpm'