This repository has been archived on 2025-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
neovim/install.sh
2024-04-11 13:53:27 +02:00

9 lines
326 B
Bash

#!/bin/sh
WORKDIR=$HOME/.config/nvim/
BINDIR=$HOME/.local/bin/
mkdir "$WORKDIR"
curl -fsSL -o "$WORKDIR/init.lua" https://gitea.fery.me/king/neovim/raw/branch/master/init.lua
curl -fsSL -o "$BINDIR/install-neovim.sh" https://gitea.fery.me/king/neovim/raw/branch/master/install-neovim.sh
chmod u+x "$BINDIR/install-neovim.sh"