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