Skip to content

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.

  1. Install gaplint from the source or using pip install gaplint (this requires gaplint version 1.0.2 or higher). If this fails, try pip3 install gaplint.

  2. Set up Ale by following their installation instructions.

  3. Do mkdir -p ~/.config/nvim/ale_linters/gap

  4. Download the file gaplint.vim and put it inside the folder ~/.config/nvim/ale_linters/gap

  5. Add the directory ftdetect to your ~/.config/nvim directory (if it doesn't already exist) mkdir ~/.config/nvim/ftdetect

  6. Download the file gap.vim and put it inside the directory ~/.config/nvim/ftdetect

  7. Restart neovim and gaplint should be working.

Clone this wiki locally