-
Notifications
You must be signed in to change notification settings - Fork 0
/
.tmux.conf
54 lines (46 loc) · 1.73 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
set -g default-terminal "screen-256color"
unbind r
bind r source-file ~/.tmux.conf
# Enable scrolling and pane-resizing w/ mouse
set -g mouse on
# vim key bindings
#setw -g mode-keys vi
#bind-key h select-pane -L
#bind-key j select-pane -D
#bind-key k select-pane -U
#bind-key l select-pane -R
# resize 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 -U 5
# copy-mode
unbind -T copy-mode-vi MouseDragEnd1Pane # don't exit copy mode after dragging with mouse
# List of plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'tmux-plugins/tmux-yank'
set -g @plugin 'christoomey/vim-tmux-navigator'
set -g @plugin 'dracula/tmux'
#set -g @plugin 'odedlaz/tmux-onedark-theme'
# Plugin config
set -g @dracula-show-powerline true
set -g @dracula-show-left-icon session
set -g @dracula-show-fahrenheit false
set -g @dracula-fixed-location 'Cambridge,Massachusetts'
set -g @dracula-plugins 'battery kubernetes-context terraform weather network time'
set -g @dracula-kubernetes-eks-hide-arn true
set -g @dracula-kubernetes-hide-user true
set -g @dracula-kubernetes-context-label " "
set -g @dracula-military-time true
set -g @dracula-time-format " %R"
set -g @dracula-kubernetes-context-colors 'deep_blue light_gray'
set -g @dracula-network-colors 'light_purple dark_gray'
set -g @dracula-battery-colors 'green gray'
set -g @dracula-weather-colors 'light_orange dark_gray'
set -g @dracula-terraform-colors 'purple dark_gray'
set -g @dracula-time-colors 'ansicyan dark_gray'
set -g @dracula-show-flags true
set -g @dracula-show-empty-plugins false
# Initialize TMUX plugin manager (keep this line at the very bottom of .tmux.conf)
run -b '~/.tmux/plugins/tpm/tpm'