diff --git a/dot_zshrc b/dot_zshrc index 80797ce..3ed8977 100644 --- a/dot_zshrc +++ b/dot_zshrc @@ -7,6 +7,7 @@ fi # If you come from bash you might have to change your $PATH. export PATH=$HOME/bin:/usr/local/bin:$PATH +export PATH=$HOME/.local/bin:$PATH # Path to your oh-my-zsh installation. export ZSH="$(echo $HOME)/.oh-my-zsh" diff --git a/run_once_install.sh.tmpl b/run_once_install.sh.tmpl index 582aca5..6cfc131 100644 --- a/run_once_install.sh.tmpl +++ b/run_once_install.sh.tmpl @@ -1,13 +1,17 @@ #!/usr/bin/env sh echo "Running installation script\n" +curl -sS https://webinstall.dev/webi | bash +webi bat curlie delta jq rg fd gh {{- if eq .chezmoi.os "linux" }} +webi fish +curl https://raw.githubusercontent.com/oh-my-fish/oh-my-fish/master/bin/install | fish {{- if eq .chezmoi.osRelease.id "alpine" }} apk update -apk add zsh neovim tmux bat perl +apk add zsh tmux perl {{- else if (or (eq .chezmoi.osRelease.id "debian") (eq .chezmoi.osRelease.id "ubuntu")) }} sudo apt update -sudo apt install zsh neovim tmux perl -y +sudo apt install zsh tmux perl -y {{- end }} {{- else if eq .chezmoi.os "darwin" }} -brew install zsh neovim tmux perl +brew install neovim zsh tmux perl {{- end }}