Skip to content

Commit b372fef

Browse files
committed
install: update install script
1 parent 392116d commit b372fef

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

install

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,19 +36,27 @@ link() {
3636

3737
info "Installing Dotfiles"
3838

39+
mkdir "$HOME/.config"
40+
3941
# ---- zsh ------------------------------------------------------------
4042
link "$dir/zsh/.zshenv" ~/.zshenv
4143
link "$dir/zsh" ~/.zsh
4244
touch ~/.zshrc.local
4345

46+
# ---- neovim ---------------------------------------------------------
47+
link "$dir/nvim" ~/.config/nvim
48+
49+
# ---- alacritty ------------------------------------------------------
50+
link "$dir/alacritty" ~/.config/alacritty
51+
4452
# ---- vim ------------------------------------------------------------
4553
link "$dir/vim" ~/.vim
4654

4755
# ---- tmux -----------------------------------------------------------
4856
link "$dir/tmux/tmux.conf" ~/.tmux.conf
4957

5058
# ---- mutt -----------------------------------------------------------
51-
link "$dir/mutt" ~/.mutt
59+
# link "$dir/mutt" ~/.mutt
5260

5361
# ---- git ------------------------------------------------------------
5462
info 'setting up git'
@@ -66,6 +74,10 @@ if [ ! -f ~/.gitconfig.local ]; then
6674

6775
fi
6876

77+
# ---- rust -----------------------------------------------------------
78+
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
79+
echo 'source "$HOME/.cargo/env"' >> $HOME/.zshrc.local
80+
6981
# ---- homebrew -------------------------------------------------------
7082
"$dir/homebrew/install-homebrew"
7183

0 commit comments

Comments
 (0)