From 6d0c92a0a714f7a2f88f997bf214a3796a7fdf32 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?George=20Guimar=C3=A3es?= Date: Sun, 21 Jul 2024 17:57:29 -0300 Subject: [PATCH] feat(text): Add Harper to grammar check comments and text --- lua/lazyvim/plugins/extras/text/harper.lua | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 lua/lazyvim/plugins/extras/text/harper.lua diff --git a/lua/lazyvim/plugins/extras/text/harper.lua b/lua/lazyvim/plugins/extras/text/harper.lua new file mode 100644 index 00000000..5db9a97f --- /dev/null +++ b/lua/lazyvim/plugins/extras/text/harper.lua @@ -0,0 +1,18 @@ +return { + { + "neovim/nvim-lspconfig", + opts = { + servers = { + harper_ls = { + settings = { + ["harper-ls"] = { + codeActions = { + forceStable = true, + }, + }, + }, + }, + }, + }, + }, +}