Add nvim autoinstall plugins
This commit is contained in:
parent
73573ab439
commit
d3693a6370
7
justfile
7
justfile
@ -36,7 +36,6 @@ install-thelounge:
|
|||||||
|
|
||||||
install-tailscale:
|
install-tailscale:
|
||||||
curl -fsSL https://tailscale.com/install.sh | sh
|
curl -fsSL https://tailscale.com/install.sh | sh
|
||||||
sudo tailscale up
|
|
||||||
|
|
||||||
rustup:
|
rustup:
|
||||||
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
|
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
|
||||||
@ -47,6 +46,7 @@ neovim:
|
|||||||
|
|
||||||
mkdir -p "${HOME}/.config/nvim"
|
mkdir -p "${HOME}/.config/nvim"
|
||||||
wget https://files.hyperreal.coffee/init.vim -O "${HOME}/.config/nvim/init.vim"
|
wget https://files.hyperreal.coffee/init.vim -O "${HOME}/.config/nvim/init.vim"
|
||||||
|
nvim -c PlugInstall -c q -c q
|
||||||
|
|
||||||
neovim-root:
|
neovim-root:
|
||||||
sudo sh -c 'curl -fLo "${XDG_DATA_HOME:-$HOME/.local/share}"/nvim/site/autoload/plug.vim --create-dirs \
|
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 mkdir -p /root/.config/nvim
|
||||||
sudo wget https://files.hyperreal.coffee/init.vim -O /root/.config/nvim/init.vim
|
sudo wget https://files.hyperreal.coffee/init.vim -O /root/.config/nvim/init.vim
|
||||||
|
sudo nvim -c PlugInstall -c q -c q
|
||||||
|
|
||||||
install-dust:
|
install-dust:
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
@ -79,8 +80,8 @@ install-fzf:
|
|||||||
|
|
||||||
auto-podman-compose:
|
auto-podman-compose:
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
containers=(AnonymousOverflow docker-breezewiki-quay dumb elk freshrss gothub libremdb lingva-translate privatebin redlib searxng shaarli)
|
containers(anonymous-overflow breezewiki dumb freshrss gothub lingva-translate privatebin redlib searxng shaarli)
|
||||||
COMPOSE_DIR="${HOME}/podman"
|
COMPOSE_DIR="${HOME}/podman-services"
|
||||||
for ctn in "${containers[@]}"; do
|
for ctn in "${containers[@]}"; do
|
||||||
cd "${COMPOSE_DIR}/${ctn}"
|
cd "${COMPOSE_DIR}/${ctn}"
|
||||||
podman-compose down
|
podman-compose down
|
||||||
|
Loading…
x
Reference in New Issue
Block a user