- Make a backup of your current Neovim files. (If you don't have anything related to Neovim configured on your machine, you can ignore this step)
# required
mv ~/.config/nvim{,.bak}
# optional but recommended
mv ~/.local/share/nvim{,.bak}
mv ~/.local/state/nvim{,.bak}
mv ~/.cache/nvim{,.bak}
- Clone the config
git clone https://github.com/razobeckett/nvim ~/.config/nvim
- Remove the
.git
folder, so you can add it to your own repo later
rm -rf ~/.config/nvim/.git
- Start Neovim!
nvim
docker run -w /root -it --rm alpine:edge sh -uelic '
apk add git lazygit fzf curl neovim ripgrep alpine-sdk --update
git clone https://github.com/RazoBeckett/nvim ~/.config/nvim
cd ~/.config/nvim
nvim
'