Up config.
This commit is contained in:
parent
1541b84d00
commit
5fe18c5cd3
@ -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") -}}
|
||||||
|
@ -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)
|
||||||
|
Loading…
Reference in New Issue
Block a user