From d3693a6370a79e16ab79bb5483cee393fb27cc97 Mon Sep 17 00:00:00 2001 From: Jeffrey Serio Date: Wed, 19 Feb 2025 13:44:04 -0600 Subject: [PATCH] Add nvim autoinstall plugins --- justfile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/justfile b/justfile index f7a600f..1247ba3 100644 --- a/justfile +++ b/justfile @@ -36,7 +36,6 @@ install-thelounge: install-tailscale: curl -fsSL https://tailscale.com/install.sh | sh - sudo tailscale up rustup: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh @@ -47,6 +46,7 @@ neovim: mkdir -p "${HOME}/.config/nvim" wget https://files.hyperreal.coffee/init.vim -O "${HOME}/.config/nvim/init.vim" + nvim -c PlugInstall -c q -c q neovim-root: sudo sh -c 'curl -fLo "${XDG_DATA_HOME:-$HOME/.local/share}"/nvim/site/autoload/plug.vim --create-dirs \ @@ -54,6 +54,7 @@ neovim-root: sudo mkdir -p /root/.config/nvim sudo wget https://files.hyperreal.coffee/init.vim -O /root/.config/nvim/init.vim + sudo nvim -c PlugInstall -c q -c q install-dust: #!/usr/bin/env bash @@ -79,8 +80,8 @@ install-fzf: auto-podman-compose: #!/usr/bin/env bash - containers=(AnonymousOverflow docker-breezewiki-quay dumb elk freshrss gothub libremdb lingva-translate privatebin redlib searxng shaarli) - COMPOSE_DIR="${HOME}/podman" + containers(anonymous-overflow breezewiki dumb freshrss gothub lingva-translate privatebin redlib searxng shaarli) + COMPOSE_DIR="${HOME}/podman-services" for ctn in "${containers[@]}"; do cd "${COMPOSE_DIR}/${ctn}" podman-compose down