2024-08-03 15:21:54 +00:00
|
|
|
#!{{ lookPath "bash" }}
|
|
|
|
|
|
|
|
# include lib
|
|
|
|
. ${CHEZMOI_WORKING_TREE}/scripts/utils.sh
|
|
|
|
|
|
|
|
# LVim version
|
|
|
|
lvim_version="1.4"
|
|
|
|
|
2024-08-03 22:47:32 +00:00
|
|
|
|
2024-08-03 21:17:16 +00:00
|
|
|
{{- if (and (ne .hasNVim false) (ne .hasLVim false)) }}
|
2024-08-03 15:21:54 +00:00
|
|
|
|
|
|
|
log "Begin LVim installation"
|
2024-08-03 22:57:58 +00:00
|
|
|
|
2024-08-04 15:06:51 +00:00
|
|
|
## go install github.com/nametake/golangci-lint-langserver@latest
|
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 }}
|