My aura-theme-infused neovim setup.
- neovim
- ripgrep
- git
- packer.vim
- Clone this repo into
~/.config/nvim
(rename any existing configs to prevent overwriting). - Open
nvim
and run the:PackerSync
command (or) run the below command.
nvim -c "PackerSync"
- Create a linux container (Arch Linux in this case).
sudo docker run -w /root -it --rm archlinux:latest sh
- Then in the the prompt that follows paste the following.
pacman -Syu --noconfirm git neovim ripgrep
mkdir .config
git clone https://github.com/jun6000/Auravim .config/nvim
nvim
- Relaunch nvim after the plugins have been installed.
- Incase a plugin fails to install run the
PackerSync
command again.