-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.sh
executable file
·53 lines (41 loc) · 1.59 KB
/
setup.sh
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
49
50
51
52
53
#!/bin/bash
# Install:
# - brew (https://brew.sh): /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
# - kitty: https://github.com/kovidgoyal/kitty/releases
# - tmux: brew install tmux
# - fzf: brew install fzf && $(brew --prefix)/opt/fzf/install
# - rg: brew install ripgrep
# - bat: brew install bat
# - go: https://go.dev/doc/install
# - neovim: brew install nvim
# - heads up for meetings in menu bar: https://github.com/leits/MeetingBar
# - preview (quick look) for code and other text: https://github.com/sbarex/SourceCodeSyntaxHighlight
# - preview (quick look) for markdown (rendered): https://github.com/sbarex/QLMarkdown
# - spotify
# - solargraph for ruby language server: gem install solargraph
# Checkout raycast alfred replacement
rm -rf $HOME/.config/kitty
ln -s "$(pwd)/kitty" $HOME/.config/kitty
rm -f $HOME/.zshrc
ln -s "$(pwd)/zshrc" $HOME/.zshrc
rm -rf $HOME/.config/zsh
ln -s "$(pwd)/zsh" $HOME/.config/zsh
# Add something about zprofile
rm -rf $HOME/.config/nvim
ln -s "$(pwd)/nvim" $HOME/.config/nvim
rm -f $HOME/.tmux.conf
ln -s "$(pwd)/tmux.conf" $HOME/.tmux.conf
rm -rf $HOME/.config/tmux
ln -s "$(pwd)/tmux" $HOME/.config/tmux
rm -rf $HOME/.config/wtf
ln -s "$(pwd)/wtf" $HOME/.config/wtf
rm -rf $HOME/.gitconfig
ln -s "$(pwd)/gitconfig" $HOME/.gitconfig
rm -rf $HOME/.gitignore
ln -s "$(pwd)/gitignore" $HOME/.gitignore
rm -rf $HOME/.asdfrc
ln -s "$(pwd)/asdf/asdfrc" $HOME/.asdfrc
rm -rf $HOME/.tool-versions
ln -s "$(pwd)/asdf/tool-versions" $HOME/.tool-versions
rm -rf $HOME/.default-gems
ln -s "$(pwd)/asdf/default-gems" $HOME/.default-gems