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