-
Notifications
You must be signed in to change notification settings - Fork 4
Using gaplint in neovim
Murray Whyte edited this page Aug 30, 2024
·
3 revisions
This page contains some information about how to use gaplint
in Vim using Syntastic.
-
Install
gaplint
from the source or usingpip install gaplint
(this requiresgaplint
version 1.0.2 or higher). If this fails, trypip3 install gaplint
. -
Set up Ale by following their installation instructions.
-
Do
mkdir -p ~/.config/nvim/ale_linters/gap
-
Download the file gaplint.vim and put it inside the folder
~/.config/nvim/ale_linters/gap
-
Add the directory
ftdetect
to your~/.config/nvim
directory (if it doesn't already exist)mkdir ~/.config/nvim/ftdetect
-
Download the file gap.vim and put it inside the directory
~/.config/nvim/ftdetect
-
Restart neovim and
gaplint
should be working.