-
Notifications
You must be signed in to change notification settings - Fork 0
/
.tmux.conf
106 lines (90 loc) · 2.78 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
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
#/.tmux.conf
set-option -g default-shell /usr/bin/fish
############################
# GLOBAL HOTKEY
############################
#unbind C-b
set-option -g prefix 'M-e' #'C-\'
bind-key 'M-e' send-prefix # 'C-\' send-prefix
############################
# STATUS BAR POSITION
############################
set-option -g status-position top
############################
# RENAME WINDOW
############################
unbind ,
bind-key r command-prompt "rename-window %%"
############################
# RELOAD CONF
############################
bind-key R source-file ~/.tmux.conf \; display-message "~/.tmux.conf reloaded"
############################
# TOGGLE MOUSE MODE ON OR OFF
############################
bind m set -g mouse on \; display "Mouse: ON"
bind M set -g mouse off \; display "Mouse: OFF"
############################
# CHANGE INDEX TO 1 NOT 0
############################
set -g base-index 1
setw -g pane-base-index 1
############################
# OPEN PANES IN CURRENT PATH
############################
unbind n
bind n new-window
bind c new-window -c "#{pane_current_path}"
bind % split-window -h -c "#{pane_current_path}"
bind '"' split-window -v -c "#{pane_current_path}"
############################
# USE VIM KEYS
############################
setw -g mode-keys vi
############################
# MOVE PANES
############################
bind -n M-Left previous-window
bind -n M-Right next-window
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
############################
# RESIZE PANES
############################
bind H resize-pane -L 2
bind J resize-pane -D 2
bind K resize-pane -U 2
bind L resize-pane -R 2
############################
# ACTIVITY ALERTS
############################
setw -g monitor-activity off
set -g visual-activity off
############################
# RENUMBER WINDOWS
############################
set -g renumber-windows on
############################
# TMUX LINES HISTORY
############################
set -g history-limit 50000
############################
# THEME
############################
set -g message-style "bg=#00346e, fg=#ffffd7" # tomorrow night blue, base3
set -g status-style "bg=#00346e, fg=#ffffd7" # tomorrow night blue, base3
set -g status-left "#[bg=#0087ff] ❐ #S " # blue
set -g status-left-length 400
set -g status-right "#{?client_prefix, ⌨ , } #[bg=#0087ff] #(whoami)@#h #[bg=green] %Y-%m-%d %H:%M "
set -g status-right-length 600
set -g set-clipboard on
set -wg window-status-format " #I #W "
set -wg window-status-current-format " #I #W "
set -wg window-status-separator ""
set -wg window-status-current-style "fg=black, bg=white"
#set -wg window-status-last-style "fg=#ffffd7"
set -wg pane-active-border-style "fg=blue"
set -wg pane-border-style "fg=#585858" # base
#set -g default-terminal "screen-256color"