-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsystem-setup
More file actions
executable file
·48 lines (38 loc) · 1 KB
/
system-setup
File metadata and controls
executable file
·48 lines (38 loc) · 1 KB
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
#!/bin/bash
# Install extra dev things for arch
sudo pacman -Syu --noconfirm
sudo yay -S --noconfirm \
spotify \
fuzzel \
ghostty \
starship \
tmux \
slack-desktop \
github-cli \
mise \
zsh-syntax-highlighting \
zsh-autosuggestions \
zoxide \
atuin
if [ ! -d ~/.tmux/plugins/tpm ]; then
git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm
fi
# mv ~/.config/nvim ~/.config/nvim-bak
# ln -s ~/.dotfiles/nvim ~/.config/nvim
if [ ! -d ~/.dokku ]; then
git clone git@github.com:dokku/dokku.git ~/.dokku
fi
touch ~/.darkmode
touch ~/.secrets
gh auth login
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
# if code directory doesn't exist, create it
if [ ! -d ~/code ]; then
mkdir ~/code
gh repo clone thejspr/budgie ~/code/budgie
gh repo clone thejspr/measurehub ~/code/measurehub
gh repo clone thejspr/meet_the_danes ~/code/meet_the_danes
fi
mise install ruby
mise install nodejs
npm install -g @anthropic-ai/claude-code