-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.tmux.conf
71 lines (60 loc) · 2.32 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
# .tmux.conf File
# By Anthony Giacalone
#--General-Settings-------------------------------------------------------------
set -g default-terminal "screen-256color"
#set -g default-terminal "tmux-256color"
set-option -ga terminal-overrides ",xterm-256color:Tc"
set-option -ga terminal-overrides ",screen-256color:Tc"
#set -g default-terminal "screen"
set -g status-interval 1
set -g mouse on # 'mode-mouse on' causes some problems
set -as terminal-overrides ',xterm*:Tc:sitm=\E[3m'
#--Key-Bindings-----------------------------------------------------------------
set -g prefix C-a
bind-key C-a last-window
bind-key C-h previous-window
bind-key C-n next-window
bind-key C-c new-window
bind-key C-d detach
bind | split-window -h
bind _ split-window -v
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
# l is for last window by default. i'm used to that, but somewhat conflicted
#bind l select-pane -R
#--Usability--------------------------------------------------------------------
set-option -g status-keys vi
set-window-option -g mode-keys vi
# keep tmux msgs around longer
set -g display-time 3000
set -g set-titles on
# Set window notifications
#set-window-option -g monitor-activity on
#set-window-option -g monitor-content anthonyg
#set-window-option -g monitor-silence 0
setw -g automatic-rename on
# Set some status bar features
set -g @onedark_time_format "%R"
set -g @onedark_date_format "%d-%b"
# if run as "tmux attach", create a session if one does not already exist
#new-session -n $HOST
# Finally, source the colors and status bar layout
#source ~/.tmux/colors/base16-ocean-dark
#source ~/.tmux/colors/tmux-gruvbox-dark.conf
#--Plugins----------------------------------------------------------------------
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'tmux-plugins/tmux-resurrect'
set -g @plugin 'tmux-plugins/tmux-continuum'
set -g @plugin 'odedlaz/tmux-status-variables'
#set -g @plugin 'jimeh/tmux-themepack'
#set -g @plugin 'egel/tmux-gruvbox'
#set -g @plugin 'arcticicestudio/nord-tmux'
set -g @plugin 'tmux-plugins/tmux-prefix-highlight'
#set -g @plugin 'odedlaz/tmux-onedark-theme'
set -g @plugin 'jsec/tmux-night-owl'
#source ~/.tmux/colors/tmuxcolors-256.conf
# Initialize the tmux plugin manager **MUST BE AT BOTTOM!**
run -b '~/.tmux/plugins/tpm/tpm'