1
0
This commit is contained in:
2025-08-14 11:18:03 +02:00
parent f036cbb710
commit d1ec51902e
5 changed files with 29 additions and 14 deletions

View File

@@ -1,5 +1,8 @@
#!{{ lookPath "bash" }}
# title
title="NeoVim configuration"
# include lib
. ${CHEZMOI_WORKING_TREE}/scripts/utils.sh
@@ -9,14 +12,14 @@ lua_version="latest:5.1"
{{- if (ne .hasNVim false) }}
log "Install Lua version for NVim via asdf"
log "Begin ${title}"
inf "Lua ${lua_version}..."
inf "install Lua ${lua_version} in asdf..."
asdf plugin add lua 'https://github.com/Stratus3D/asdf-lua.git'
asdf install lua ${lua_version}
asdf set lua ${lua_version}
log "Lua version for NVim set"
log "${title} done"
{{- end }}