From 5967ac049f0a3a3838f29bb88ea98063eab991c3 Mon Sep 17 00:00:00 2001 From: pika Date: Wed, 21 May 2025 23:04:14 +0200 Subject: [PATCH] testing.. --- neovim.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/neovim.sh b/neovim.sh index f30efe1..31a864a 100644 --- a/neovim.sh +++ b/neovim.sh @@ -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