From 00f2329c7f8759d56b59404138b58d4a18db75ce Mon Sep 17 00:00:00 2001 From: TheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com> Date: Wed, 10 Jul 2024 11:56:58 +0900 Subject: Init --- static/thesiah-debian.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'static/thesiah-debian.sh') diff --git a/static/thesiah-debian.sh b/static/thesiah-debian.sh index 53f5f71..4f560d9 100755 --- a/static/thesiah-debian.sh +++ b/static/thesiah-debian.sh @@ -133,20 +133,21 @@ vimplugininstall() { } lfinstall() { - env CGO_ENABLED=0 go install -ldflags="-s -w" github.com/gokcehan/lf@latest + env CGO_ENABLED=0 go install -ldflags="-s -w" github.com/gokcehan/lf@latest || return } zoxideinstall() { git clone https://github.com/ajeetdsouza/zoxide.git cd zoxide ./install.sh - cd /tmp + cd /tmp || return } nviminstall() { latest_version=$(curl -s https://api.github.com/repos/neovim/neovim/releases/latest | grep -o '"tag_name": ".*"' | cut -d'"' -f4) download_url="https://github.com/neovim/neovim/releases/download/$latest_version/nvim.appimage" curl -LO "$download_url" + mv nvim.appimage /usr/bin/nvim || return } addsudo() { -- cgit v1.2.3