Contains my personal nvim configuration.
- Neovim v0.10.0
To use it in github code space, make sure to move the nvim folder into the default
nvim program config directory. For my linux github codespace, this directory is ~/.config
.
So copy over the nvim
folder to the path ~/.config/nvim
.
For telescope live-grep to work properly, make sure to install https://github.com/BurntSushi/ripgrep
You can use the provided use-this-nvim-config.sh
file to make nvim pick up this
repo locally as the nvim
configuration directory.
source use-this-nvim-config.sh
You can install neovim from their pre-built tarball available here. The guide shows how to install neovim. The guide is repeated below:
curl -LO https://github.com/neovim/neovim/releases/latest/download/nvim-linux64.tar.gz
sudo rm -rf /opt/nvim
sudo tar -C /opt -xzf nvim-linux64.tar.gz
Don't forget to update you .bashrc
or .zshrc
with the following:
export PATH="$PATH:/opt/nvim-linux64/bin"