Skip to content

Commit 08e90ec

Browse files
committed
feat: update config
1 parent 418b599 commit 08e90ec

File tree

4 files changed

+39
-8
lines changed

4 files changed

+39
-8
lines changed

install-ripgrep.sh

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
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

install-tmux.sh

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
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

install.conf.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@
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

tmux/tmux.conf

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff 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"
111107
set -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"
115112
set -g @plugin 'tmux-plugins/tpm'
116113
set -g @plugin 'tmux-plugins/tmux-sensible'
117-
set -g @plugin 'tmux-plugins/tmux-online-status'
114+
# set -g @plugin 'tmux-plugins/tmux-online-status'
118115
set -g @plugin 'dracula/tmux'
119116
set -g @plugin 'christoomey/vim-tmux-navigator'
120117

0 commit comments

Comments
 (0)