From b82bf9c05c2f4e3821d425698956ca68b1dcc4c2 Mon Sep 17 00:00:00 2001 From: GitHub Actions Date: Sat, 30 Aug 2025 10:06:33 +0000 Subject: [PATCH] Deploy PR #1101 preview --- docs-preview-1101/options.html | 75 ++++++++++++++++++++++++++++++++++ 1 file changed, 75 insertions(+) diff --git a/docs-preview-1101/options.html b/docs-preview-1101/options.html index 0240ac53..e534e951 100644 --- a/docs-preview-1101/options.html +++ b/docs-preview-1101/options.html @@ -25114,6 +25114,81 @@ boolean

+
+ + vim.lsp.harper-ls.enable + + +
+
+

Whether to enable Harper grammar checking LSP.

+ +

Type: +boolean

+ +

Default: +false

+ +

Example: +true

+ +

Declared by:

+ + +
+ +<nvf/modules/plugins/lsp/harper-ls/harper-ls.nix> + +
+
+
+ + vim.lsp.harper-ls.settings + + +
+
+

Settings to pass to harper-ls

+ +

Type: +attribute set of anything

+ +

Default: +{ }

+ +

Example:

{
+  codeActions = {
+    ForceStable = false;
+  };
+  diagnosticSeverity = "hint";
+  dialect = "American";
+  fileDictPath = "";
+  ignoredLintsPath = { };
+  isolateEnglish = false;
+  linters = {
+    BoringWords = true;
+    PossessiveNoun = true;
+    SentenceCapitalization = false;
+    SpellCheck = false;
+  };
+  markdown = {
+    IgnoreLinkTitle = false;
+  };
+  maxFileLength = 120000;
+  userDictPath = "";
+  workspaceDictPath = "";
+}
+
+ +

Declared by:

+ + +
+ +<nvf/modules/plugins/lsp/harper-ls/harper-ls.nix> + +
+
vim.lsp.inlayHints.enable