From ee1098588dbd9fd19c1c74600f923fcac2e757cd Mon Sep 17 00:00:00 2001 From: ache Date: Fri, 9 Aug 2024 06:57:45 +0200 Subject: Add plugin to check grammar but disable it --- lua/ache/plugins/vim-grammarous.lua | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 lua/ache/plugins/vim-grammarous.lua 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, +} -- cgit v1.3-2-g11bf