-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.tmux.conf
67 lines (49 loc) · 1.64 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# remap prefix to Control + Space
set -g prefix C-Space
unbind C-b
bind Space send-prefix
# Vi key bindings
setw -g mode-keys vi
# force a reload of the config file
unbind r
bind r source-file ~/.tmux.conf
# quick pane cycling
unbind ^A
bind ^A select-pane -t :.+
bind '\' split-window -h # Split panes horizontal
bind '-' split-window -v # Split panes vertically
# mouse mode on
set -g mouse on
set-option -s set-clipboard on
# if the line between panes is dashed in iterm2, go to preferences->profiles->text
# and change the font from Monaco to Menlo
# include Mac specific settings
if-shell "uname | grep -q Darwin" "source-file ~/dotfiles/.tmux-mac.conf"
# include Linux specific options
if-shell "uname | grep -q Linux" "source-file ~/dotfiles/.tmux-linux.conf"
# Vim style pane selection
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
# Use Alt-keys without prefix key to switch panes
bind -n M-h select-pane -L
bind -n M-j select-pane -D
bind -n M-k select-pane -U
bind -n M-l select-pane -R
# Use Alt-arrow keys without prefix key to switch panes
bind -n M-Left select-pane -L
bind -n M-Right select-pane -R
bind -n M-Up select-pane -U
bind -n M-Down select-pane -D
# Shift arrow to switch windows
bind -n S-Left previous-window
bind -n S-Right next-window
set -sg escape-time 0
set -g allow-rename off
#bind-key -T copy-mode-vi 'v' send -X begin-selection
#bind-key -T copy-mode-vi 'r' send -X rectangle-toggle
#bind-key -T copy-mode-vi 'y' send -X copy-pipe-and-cancel
set-option -g focus-events on
set-option -sa terminal-features ',screen-256color:RGB'
set-option -ga terminal-overrides ',screen-256color:Tc'