Neovim
Notes on Neovim.
Installation
Fedora
To install Neovim on Fedora simply run:
sudo dnf install -y neovim python3-neovim
vim-plug
To install vim-plug
1 run:
sh -c 'curl -fLo "${XDG_DATA_HOME:-$HOME/.local/share}"/nvim/site/autoload/plug.vim --create-dirs \
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim'
The config file if not existing can created at ~/.config/nvim/init.vim
.
The syntax is (for instance to add Crystal support):
call plug#begin()
Plug 'vim-crystal/vim-crystal'
call plug#end()