diff options
| author | ache <ache@ache.one> | 2024-08-09 06:57:45 +0200 |
|---|---|---|
| committer | ache <ache@ache.one> | 2024-08-09 06:57:50 +0200 |
| commit | ee1098588dbd9fd19c1c74600f923fcac2e757cd (patch) | |
| tree | d260dd7f466f3e8f891f06d285f08c03fb11e1fc /lua/ache/plugins | |
| parent | Ltex extra plugin (diff) | |
Add plugin to check grammar but disable it
Diffstat (limited to 'lua/ache/plugins')
| -rw-r--r-- | lua/ache/plugins/vim-grammarous.lua | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lua/ache/plugins/vim-grammarous.lua b/lua/ache/plugins/vim-grammarous.lua new file mode 100644 index 0000000..bd28815 --- /dev/null +++ b/lua/ache/plugins/vim-grammarous.lua @@ -0,0 +1,8 @@ +return { + "dpelle/vim-LanguageTool", + enabled = false, + config = function() + vim.g.languagetool_jar = + "PATH=$PATH:/usr/share/java/languagetool/ /usr/share/java/languagetool/languagetool-commandline.jar" + end, +} |