1
0
chezmoi/home/.chezmoiscripts/run_once_after_30-install-lvim.sh.tmpl
Jeff LANCE 9a10939e95 Update home/.chezmoiscripts/30-install-lvim.sh
Update home/.chezmoiscripts/onchange_10-install-packages.sh
Update home/.zshenv
2024-08-04 00:47:32 +02:00

19 lines
442 B
Cheetah

#!{{ lookPath "bash" }}
# include lib
. ${CHEZMOI_WORKING_TREE}/scripts/utils.sh
# LVim version
lvim_version="1.4"
{{- if (and (ne .hasNVim false) (ne .hasLVim false)) }}
log "Begin LVim installation"
LV_BRANCH="release-${lvim_version}/neovim-0.9" bash <(curl -s "https://raw.githubusercontent.com/LunarVim/LunarVim/release-${lvim_version}/neovim-0.9/utils/installer/install.sh")
log "Finish LVim installation"
{{- end }}