1
0
This commit is contained in:
Jeff Lance 2024-02-27 15:06:11 +01:00
parent e29d5eee54
commit a746d0c4d3
2 changed files with 14 additions and 10 deletions

View File

@ -81,7 +81,17 @@ packages=(
## Install packages
packages=(${packages[@]//starship/makedeb})
packages+=(mist cmake ninja-build pkg-config)
packages+=(
autoconf
automake
cmake
doxygen
libtool
libtool-bin
mist
ninja-build
pkg-config
)
for package in ${packages[@]}; do
echo "installing ${package}..."
@ -93,11 +103,7 @@ packages=(
{{- end }}
done
{{- if ne .chezmoi.username "root" }}
DEBIAN_FRONTEND=noninteractive sudo -E mist install starship
{{- else }}
DEBIAN_FRONTEND=noninteractive mist install starship
{{- end }}
curl -sS https://starship.rs/install.sh | sh
echo -e "\033[0;32m>>>>> Finish Debian/Ubuntu Linux packages installation <<<<<\033[0m"

View File

@ -12,7 +12,6 @@ echo -e "\033[0;32m>>>>> Begin LVim installation <<<<<\033[0m"
{{ if (eq .chezmoi.osRelease.id "manjaro" "arch") -}}
{{- /* we're on Arch based system */ -}}
## Update system
{{- if ne .chezmoi.username "root" }}
sudo pacman -Syu --noconfirm
@ -35,9 +34,6 @@ echo -e "\033[0;32m>>>>> Begin LVim installation <<<<<\033[0m"
{{ else if (eq .chezmoi.osRelease.id "debian" "ubuntu") -}}
{{- /* we're on Debian based system */ -}}
echo -e "\033[0;32m>>>>> Begin zsh installation <<<<<\033[0m"
## Update system
{{- if ne .chezmoi.username "root" }}
DEBIAN_FRONTEND=noninteractive sudo -E apt update
@ -54,6 +50,8 @@ echo -e "\033[0;32m>>>>> Begin LVim installation <<<<<\033[0m"
DEBIAN_FRONTEND=noninteractive apt-get install --yes --no-install-recommends --ignore-missing python3-pynvim npm
{{- end }}
mist install neovim
{{- end }}
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')