-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.tmux.conf
38 lines (32 loc) · 1.51 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
## ek9/shell-config - https://github.com/ek9/shell-config
## .tmux.conf
## tmux configuration file
## Setup TPM (tmux paplugin manager) - https://github.com/tmux-plugins/tpm
set-environment -g TMUX_PLUGIN_MANAGER_PATH '~/.config/tmux/plugins/'
## Plugins
# Supports `github_username/repo` or full git repo URLs.
# Examples: github_username/plugin_name, [email protected]/user/plugin
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'ek9/tmux-config'
set -g @plugin 'ek9/tmux-vim-bindings'
set -g @plugin 'ek9/tmux-sessionist'
set -g @plugin 'seebi/tmux-colors-solarized'
set -g @plugin 'tmux-plugins/tmux-yank'
set -g @plugin 'tmux-plugins/tmux-battery'
set -g @plugin 'tmux-plugins/tmux-cpu'
set -g @plugin 'tmux-plugins/tmux-sidebar'
set -g @plugin 'NHDaly/tmux-scroll-copy-mode'
#set -g @plugin 'tmux-plugins/tmux-resurrect'
#set -g @plugin 'markeissler/tmux-resurrect-ng'
#set -g @plugin 'tmux-plugins/tmux-continuum'
#set -g @plugin 'tmux-plugins/tmux-sessionist'
#set -g @plugin 'tmux-plugins/tmux-yank'
# tmux-resurrect
#set -g @resurrect-strategy-vim 'session'
#set -g @resurrect-dir '~/.config/tmux/resurrect'
# tmux-resurrect-ng
#set -g status-right "#(hostname -s | cut -c 1-23) #[fg=cyan][#(uptime | rev | cut -d":" -f1 | rev | sed s/,//g) ]#[default][#($HOME/.tmux/plugins/tmux-resurrect-ng/scripts/status_runner.sh #S)]"
#set -g status-right-length 40
#[#($HOME/.tmux/plugins/tmux-resurrect-ng/scripts/status_runner.sh #S)]
# TPM Init - keep this line at the very bottom of tmux.conf.
run-shell '~/.config/tmux/plugins/tpm/tpm'