File tree Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -36,19 +36,27 @@ link() {
36
36
37
37
info " Installing Dotfiles"
38
38
39
+ mkdir " $HOME /.config"
40
+
39
41
# ---- zsh ------------------------------------------------------------
40
42
link " $dir /zsh/.zshenv" ~ /.zshenv
41
43
link " $dir /zsh" ~ /.zsh
42
44
touch ~ /.zshrc.local
43
45
46
+ # ---- neovim ---------------------------------------------------------
47
+ link " $dir /nvim" ~ /.config/nvim
48
+
49
+ # ---- alacritty ------------------------------------------------------
50
+ link " $dir /alacritty" ~ /.config/alacritty
51
+
44
52
# ---- vim ------------------------------------------------------------
45
53
link " $dir /vim" ~ /.vim
46
54
47
55
# ---- tmux -----------------------------------------------------------
48
56
link " $dir /tmux/tmux.conf" ~ /.tmux.conf
49
57
50
58
# ---- mutt -----------------------------------------------------------
51
- link " $dir /mutt" ~ /.mutt
59
+ # link "$dir/mutt" ~/.mutt
52
60
53
61
# ---- git ------------------------------------------------------------
54
62
info ' setting up git'
@@ -66,6 +74,10 @@ if [ ! -f ~/.gitconfig.local ]; then
66
74
67
75
fi
68
76
77
+ # ---- rust -----------------------------------------------------------
78
+ curl --proto ' =https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
79
+ echo ' source "$HOME/.cargo/env"' >> $HOME /.zshrc.local
80
+
69
81
# ---- homebrew -------------------------------------------------------
70
82
" $dir /homebrew/install-homebrew"
71
83
You can’t perform that action at this time.
0 commit comments