3 lines
239 B
Bash
Executable file
3 lines
239 B
Bash
Executable file
#!/bin/sh
|
|
# Installs the Neovim config only; Neovim itself must already be installed.
|
|
mkdir -p "${XDG_CONFIG_HOME:-$HOME/.config}" && git clone https://git.sailorpunisher.com/sailor/nvim-config.git "${XDG_CONFIG_HOME:-$HOME/.config}/nvim"
|