Skip to content

Latest commit

 

History

History
34 lines (28 loc) · 991 Bytes

File metadata and controls

34 lines (28 loc) · 991 Bytes

nvim neovim config

configuration for neovim text editor.

installation

install the latest version from and the required packages.

sudo pacman -Syu neovim python-pip python-virtualenv fzf ripgrep bat inotify-tools nodejs npm
sudo npm update -g

create the python 3 environment and install the required libraries

virtualenv $HOME/.venvs/nvim
source $HOME/.venvs/nvim/bin/activate
pip3 install neovim pynvim black==22.10.0 isort flake8 

clone this repository into the neovim configuration directory:

mkdir -p $HOME/.config/nvim
git clone https://www.github.com/ricalbr/nvim $HOME/.config/nvim

useful commands

  • update plugins: :lua vim.pack.update()
  • check LSP info: :LspInfo
  • debug config: :checkhealth

see also

neovim github release page