-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.tmux.conf
46 lines (37 loc) · 1.44 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
# Set a Ctrl-b shortcut for reloading your tmux config
bind v source-file ~/.tmux.conf
# Turn off pane swap
unbind-key C-o
# Use Vim style keys
set-window-option -g mode-keys vi
# Set some resize functions (defaults don't work in OSX)
bind e resize-pane -D 10
bind u resize-pane -U 10
bind l resize-pane -L 10
bind r resize-pane -R 10
# Active pane
set-option -g pane-active-border-style fg=colour226,bg=default
set-option -g pane-border-style fg=black,bg=default
# Active window
# set-option -g window-active-style bg=#1d1f21,fg=default
# set-option -g window-style bg=colour16,fg=white
# Status bar customization
# neon green colour119 or 47?
set -g status-bg colour200
set -g status-fg white
set -g status-interval 5
set -g status-left-length 90
set -g status-right-length 60
set -g status-left "#[bg=colour47]#[fg=black]#(whoami)#[fg=black]@#[fg=black]#(hostname -s)#[fg=black] :: #(curl ipecho.net/plain;echo)"
set -g status-justify left
set -g status-right '#[bg=colour200]#[fg=#ffff00]#S #[fg=black]%a %d %b %R'
setw -g window-status-current-format ' #I#[fg=colour166]:#[fg=colour255]#W#[fg=colour249]#F '
setw -g window-status-current-style 'fg=white bg=black'
# Clock
set-window-option -g clock-mode-colour cyan
set-window-option -g clock-mode-style 12
set-option -g default-shell /bin/zsh
set -ga terminal-overrides ',xterm-256color:Tc'
# # C&P
# bind -t vi-copy 'v' begin-selection
# bind -t vi-copy 'y' copy-pipe "reattach-to-user-namespace pbcopy"