Skip to content

RazoBeckett/nvim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

75 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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
'