-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall
executable file
·48 lines (34 loc) · 1.13 KB
/
install
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
#!/usr/bin/env sh
DOTFILES="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
cp $DOTFILES/env.example $HOME/.env
# git
ln -sf $DOTFILES/git/gitconfig $HOME/.gitconfig
ln -sf $DOTFILES/git/gitignore_global $HOME/.gitignore_global
# ssh
ln -sf $DOTFILES/ssh/config $HOME/.ssh/config
# karabiner
mkdir -p $HOME/.config
ln -sf $DOTFILES/karabiner $HOME/.config
# zsh
ln -sf $DOTFILES/zsh/zshrc $HOME/.zshrc
# starship
ln -sf $DOTFILES/starship/starship.toml $HOME/.config
# neovim
rm -rf $HOME/.config/nvim
ln -s $DOTFILES/nvim $HOME/.config/nvim
# vscode
ln -sf $DOTFILES/vscode/settings.json $HOME/Library/Application\ Support/Code/User/settings.json
ln -sf $DOTFILES/vscode/keybindings.json $HOME/Library/Application\ Support/Code/User/keybindings.json
# atuin
rm -rf $HOME/.config/atuin
ln -s $DOTFILES/atuin $HOME/.config/atuin
# doom
rm -rf $HOME/.config/doom
ln -s $DOTFILES/doom $HOME/.config/doom
# skhd & yabai
ln -sf $DOTFILES/yabai/yabairc $HOME/.yabairc
ln -sf $DOTFILES/skhd/skhdrc $HOME/.skhdrc
touch $HOME/.hushlogin
# scripts
mkdir -p $HOME/.local/bin
ln -sf $DOTFILES/scripts/display_is_ultrawide $HOME/.local/bin/display_is_ultrawide