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