-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.tmux.conf
More file actions
executable file
·120 lines (96 loc) · 3.3 KB
/
.tmux.conf
File metadata and controls
executable file
·120 lines (96 loc) · 3.3 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
# Based on https://github.com/alindeman/dotfiles/blob/master/.tmux.conf
# fix problem with colors
set -g default-terminal "xterm"
# Enable mouse scrolling and pane selection
set -g mouse on
# C-a as a prefix; similar to GNU screen
set -g prefix C-a
unbind C-b
# open new window in current path
unbind c
bind c new-window -c '#{pane_current_path}'
# 1-based window indexes
set -g base-index 1
setw -g pane-base-index 1
# renumber windows on window kill
set-option -g renumber-windows on
# Reload .tmux.conf with prefix-r
bind r source-file ~/.tmux.conf \; display "Reloaded!"
# Pass C-a to applications
bind C-a send-prefix
# prefix-| splits vertically
# prefix-- splits horizontally
bind | split-window -h -c '#{pane_current_path}'
bind - split-window -v -c '#{pane_current_path}'
# Mowing between windows
bind j next-window
bind k previous-window
# Moving between panes
#bind h select-pane -L
#bind j select-pane -D
#bind k select-pane -U
#bind l select-pane -R
# Smart pane switching with awareness of vim splits
bind -n C-h run "(tmux display-message -p '#{pane_current_command}' | grep -iqE '(^|\/)g?(view|n?vim?)(diff)?$' && tmux send-keys C-h) || tmux select-pane -L"
bind -n C-j run "(tmux display-message -p '#{pane_current_command}' | grep -iqE '(^|\/)g?(view|n?vim?)(diff)?$' && tmux send-keys C-j) || tmux select-pane -D"
bind -n C-k run "(tmux display-message -p '#{pane_current_command}' | grep -iqE '(^|\/)g?(view|n?vim?)(diff)?$' && tmux send-keys C-k) || tmux select-pane -U"
bind -n C-l run "(tmux display-message -p '#{pane_current_command}' | grep -iqE '(^|\/)g?(view|n?vim?)(diff)?$' && tmux send-keys C-l) || tmux select-pane -R"
bind -n C-\ run "(tmux display-message -p '#{pane_current_command}' | grep -iqE '(^|\/)g?(view|n?vim?)(diff)?$' && tmux send-keys 'C-\\') || tmux select-pane -l"
# Restore sendign C-l
bind C-l send-keys 'C-l'
# Resizing panes
bind -r H resize-pane -L 5
bind -r J resize-pane -D 5
bind -r K resize-pane -U 5
bind -r L resize-pane -R 5
# 256 colors
set -g default-terminal "screen-256color"
# Colors
set -g status-fg white
set -g status-bg default
setw -g window-status-fg cyan
setw -g window-status-bg default
setw -g window-status-attr dim
setw -g window-status-current-fg white
setw -g window-status-current-bg red
setw -g window-status-current-attr bright
set -g pane-border-fg green
set -g pane-border-bg black
set -g pane-active-border-fg white
set -g pane-active-border-bg black
set -g message-fg white
set -g message-bg black
set -g message-attr bright
# Status bar
set -g status-right "[#T] %H:%M %e %h %Y"
set -g status-interval 60
#set -g status-utf8 on
set -g status-position top
set -g status-left-length 20
set -g status-right-length 60
# Activity in other windows
setw -g monitor-activity on
# vi keys, especially for copy mode
setw -g mode-keys vi
unbind p
bind p paste-buffer
#bind -t vi-copy 'v' begin-selection
#bind -t vi-copy 'V' begin-selection
#bind -t vi-copy 'y' copy-selection
# Previous window under prefix b
unbind b
bind b previous-window
# Set terminal tile
set-option -g set-titles on
set-option -g set-titles-string '[#S:#I #H] #W'
# Toggle automatic window renaming off
bind C-f \
set allow-rename off;
# Toggle mouse on with prefix m
bind m \
set -g mouse on \;\
display 'Mouse: ON'
# Toggle mouse off with prefix M
bind M \
set -g mouse off \;\
display 'Mouse: OFF'