Integrate languagetool into neovim

I already set it up as service for firefox extension.
This now also integrates into neovim.
This commit is contained in:
Daniel Siepmann 2022-05-23 18:26:37 +02:00
parent 3110d19453
commit 003b6be119
Signed by: Daniel Siepmann
GPG key ID: 33D6629915560EF4
3 changed files with 1 additions and 4 deletions

View file

@ -423,6 +423,7 @@ in {
let g:ale_xml_xmllint_executable = '${pkgs.libxml2}/bin/xmllint'
let g:ale_gitcommit_gitlint_executable = '${pkgs.gitlint}/bin/gitlint'
let g:ale_nix_statix_check_executable = '${pkgs.statix}/bin/statix'
let g:ale_languagetool_executable = '${pkgs.languagetool}/bin/languagetool-commandline'
'';
}

View file

@ -49,5 +49,3 @@ let g:ale_sign_warning = '!'
" let g:ale_sign_style_warning = '!'
let g:ale_php_phpcs_standard = 'PSR12'
let g:ale_languagetool_executable = 'languagetool-commandline'

View file

@ -104,8 +104,6 @@ Additions:
* https://github.com/darrenburns/dunk diff alternative
* Add languagetool integration (via ale?) into Neovim (for rst, markdown, git commit?)
* Integrate https://github.com/Wilfred/difftastic for diffing source code
https://github.com/nix-community/home-manager/pull/2850