-
Notifications
You must be signed in to change notification settings - Fork 0
/
.tmux.conf
30 lines (29 loc) · 1.26 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
set-option -g history-limit 100000
set-environment -g PATH "/opt/homebrew/bin:/usr/local/bin:/bin:/usr/bin:$PATH:/sbin"
set-environment -g "TMUX_PLUGIN_MANAGER_PATH" "$HOME/.tmux/plugins/"
bind '"' split-window -c "#{pane_current_path}"
bind % split-window -h -c "#{pane_current_path}"
if "test ! -d ~/.tmux/plugins/tpm" \
"run 'git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm && ~/.tmux/plugins/tpm/bin/install_plugins'"
set-option -g default-terminal "xterm-256color"
set-option -g default-size 137x35
set-option -g clock-mode-style 12
set -g @dracula-plugins "git cpu-usage ram-usage weather network-ping battery"
set -g @dracula-show-powerline true
set -g @dracula-military-time false
set -g @dracula-show-location false
set -g @dracula-padding-bg "#1d1f21"
set -g @dracula-git-no-repo-message "❌ Git"
set -g @dracula-cpu-cores "12"
set -g @dracula-cols "1000"
set -g @resurrect-capture-pane-contents 'on'
set -g mouse on
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'Yash-Singh1/dracula-tmux'
# Apparently doesn't work on mac
# set -g @plugin 'b0o/tmux-autoreload'
set -g @plugin 'ChanderG/tmux-notify'
set -g @plugin 'tmux-plugins/tmux-sidebar'
set -g @plugin 'tmux-plugins/tmux-resurrect'
set -g @plugin 'wfxr/tmux-fzf-url'
run '~/.tmux/plugins/tpm/tpm'