File tree Expand file tree Collapse file tree 4 files changed +39
-8
lines changed
Expand file tree Collapse file tree 4 files changed +39
-8
lines changed Original file line number Diff line number Diff line change 1+ #! /usr/bin/env bash
2+
3+ set -x
4+ set -e
5+
6+ if [[ " $( uname) " == " Darwin" ]]; then
7+ brew install ripgrep
8+ else
9+ sudo apt-get install -y ripgrep
10+ fi
Original file line number Diff line number Diff line change 1+ #! /usr/bin/env bash
2+
3+ set -e
4+ set -x
5+ if [[ " $( uname) " == " Darwin" ]]; then
6+ brew install tmux
7+ else
8+ sudo apt-get install -y tmux
9+ fi
10+
11+ git clone https://github.com/tmux-plugins/tpm ~ /.tmux/plugins/tpm
12+ # start a server but don't attach to it
13+ tmux start-server &&
14+ # create a new session but don't attach to it either
15+ tmux new-session -d &&
16+
17+ # https://github.com/tmux-plugins/tpm/issues/6
18+ # add sleep 1 before calling install_plugins.sh to wait for tmux server launch
19+ sleep 1 &&
20+
21+ # install the plugins
22+ ~ /.tmux/plugins/tpm/scripts/install_plugins.sh &&
23+ # killing the server is not required, I guess
24+ tmux kill-server
Original file line number Diff line number Diff line change 2424 url : https://github.com/asdf-vm/asdf-nodejs.git
2525 global : 20.10.0
2626 versions :
27- s - 20.10.0
27+ - 20.10.0
2828 - plugin : golang
2929 url : https://github.com/asdf-community/asdf-golang
3030 global : 1.25.1
3131 versions :
32- - 1.21 .5
32+ - 1.22 .5
Original file line number Diff line number Diff line change @@ -103,18 +103,15 @@ bind M set -g mouse off
103103# set -g display-panes-active-colour red
104104# set -g display-panes-colour white
105105
106- # ## clock
107- # set -g clock-mode-colour cyan
108- set -g @dracula-show-weather false
109- set -g @dracula-cpu-usage true
110- set -g @dracula-ram-usage true
106+ set -g @dracula-plugins " network-bandwidth cpu-usage ram-usage"
111107set -g @dracula-show-powerline true
108+ set -g @dracula-network-bandwidth-colors " pink dark_gray"
112109# List of plugins ###########################################################################
113110
114111# set -g @plugin "arcticicestudio/nord-tmux"
115112set -g @plugin ' tmux-plugins/tpm'
116113set -g @plugin ' tmux-plugins/tmux-sensible'
117- set -g @plugin ' tmux-plugins/tmux-online-status'
114+ # set -g @plugin 'tmux-plugins/tmux-online-status'
118115set -g @plugin ' dracula/tmux'
119116set -g @plugin ' christoomey/vim-tmux-navigator'
120117
You can’t perform that action at this time.
0 commit comments