delete p10k configuration file to force reconfiguring on install, and replace dot_install_scripts with run_once_install.sh.tmpl

This commit is contained in:
2021-11-17 15:17:31 -07:00
parent cd3e97805a
commit 7ec1662ae5
3 changed files with 12 additions and 1647 deletions

12
run_once_install.sh.tmpl Normal file
View File

@@ -0,0 +1,12 @@
#!/usr/bin/env bash
{{- if eq .chezmoi.os "linux" }}
{{- if eq .chezmoi.osRelease.id "alpine" }}
apk update
apk add zsh neovim tmux bat
{{- else if eq .chezmoi.osRelease.id "debian" }}
sudo apt update
sudo apt install zsh neovim tmux -y
{{- end }}
{{- else if eq .chezmoi.os "darwin" }}
brew install zsh neovim tmux
{{- end }}