GitHunt

Neovim Config

Installation:

  • 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

Try out with docker:

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
'

Languages

Lua100.0%

Contributors

The Unlicense
Created January 28, 2024
Updated December 15, 2025
RazoBeckett/nvim | GitHunt