testing..

This commit is contained in:
pika 2025-05-21 23:04:14 +02:00
parent b2e8c37812
commit 5967ac049f

View file

@ -80,7 +80,7 @@
if command_exists git; then
sleep 1
if $_run --err err git clone --depth=1 https://github.com/neovim/neovim.git; then
if $_run git clone --depth=1 https://github.com/neovim/neovim.git; then
check green "Cloned $PACKAGE sources"
line
@ -136,7 +136,7 @@
local url="https://git.k4li.de/dotfiles/nvim.git"
spin yellow "Cloning pika's standard config"
# if $_run install-stuff; then
if $_run --err err --out out git clone --recursive --depth=1 $url "$HOME/.config/nvim"; then
if $_run git clone --recursive --depth=1 $url "$HOME/.config/nvim"; then
check "Cloned neovim config"
line
pen "${out:-}"
@ -146,7 +146,7 @@
fi
spin bold yellow "Also sourcing config!"
if $_run --err err --out out nvim --headless +q; then
if $_run nvim --headless +q; then
check "Prefetching config was successfull"
line
pen "${out:-}"
@ -160,7 +160,7 @@
local url="https://git.k4li.de/dotfiles/nvim-mini.git"
spin yellow "Cloning pika's standard config"
# if $_run install-stuff; then
if $_run --err err --out out git clone --recursive --depth=1 $url "$HOME/.config/nvim"; then
if $_run git clone --recursive --depth=1 $url "$HOME/.config/nvim"; then
check "Cloned neovim config"
line
pen "${out:-}"
@ -170,7 +170,7 @@
fi
spin bold yellow "Also sourcing config!"
if $_run --err err --out out nvim --headless +q; then
if $_run nvim --headless +q; then
check "Prefetching config was successfull"
line
pen "${out:-}"
@ -229,7 +229,7 @@
done
if $silent; then
_run="run"
_run="run --err err"
else
_run=""
fi