A Neovim wrapper around Vale, the syntax-aware linter for prose.
NOTE: This is a beta version, please add an issue if you see any errors!
Using vim-plug
Plug 'marcelofern/vale.nvim'
Using dein
call dein#add('marcelofern/vale.nvim')
Using packer.nvim
use {
'marcelofern/vale.nvim'
}
require("vale").setup({
-- path to the vale binary.
bin="/bin/vale",
-- path to your vale-specific configuration.
vale_config_path="$HOME/.config/vale/vale.ini",
})
Neovim (v0.7.0) or the
latest neovim nightly commit is required for vale.nvim
to work.
Instructions to install and configure Vale go as follows:
- Head down to Vale's Github page.
- From the releases page, download and install the most adequate binary for your system.
- Go to the Config Generator website to select the configuration you want to use.
- Run
vale sync
so that all the necessary packages are installed.
Enjoy!