1
0

Up config.

This commit is contained in:
Jeff Lance 2024-01-20 22:50:27 +01:00
parent 1541b84d00
commit 5fe18c5cd3
2 changed files with 14 additions and 2 deletions

View File

@ -6,7 +6,7 @@ packages=(
curl curl
wget wget
tmux tmux
neovim zsh
) )
{{ if (eq .chezmoi.osRelease.id "manjaro" "arch") -}} {{ if (eq .chezmoi.osRelease.id "manjaro" "arch") -}}

View File

@ -1,3 +1,15 @@
#!/bin/env bash #!/usr/bin/env bash
set -euxo pipefail
if [ ! $(command -v nvim) ]; then
{{- if ne .chezmoi.username "root" }}
sudo yay -S --noconfirm neovim python-pynvim
{{- else }}
yay -S --noconfirm neovim python-pynvim
{{- end }}
fi
LV_BRANCH='release-1.3/neovim-0.9' bash <(curl -s https://raw.githubusercontent.com/LunarVim/LunarVim/release-1.3/neovim-0.9/utils/installer/install.sh) LV_BRANCH='release-1.3/neovim-0.9' bash <(curl -s https://raw.githubusercontent.com/LunarVim/LunarVim/release-1.3/neovim-0.9/utils/installer/install.sh)