1
0
chezmoi/home/.chezmoiscripts/run_once_after_30-install-lvim.sh.tmpl

20 lines
509 B
Cheetah
Raw Normal View History

2024-08-03 15:21:54 +00:00
#!{{ lookPath "bash" }}
# include lib
. ${CHEZMOI_WORKING_TREE}/scripts/utils.sh
2024-08-03 15:51:49 +00:00
. ${HOME}/.asdf/asdf.sh
2024-08-03 15:21:54 +00:00
# LVim version
lvim_version="1.4"
{{- if (and (ne .hasNVim false) (ne .hasLatex false)) }}
log "Begin LVim installation"
2024-08-03 16:35:58 +00:00
install_binary "tree-sitter-cli" "yay"
2024-08-03 15:21:54 +00:00
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 }}