From b82bf9c05c2f4e3821d425698956ca68b1dcc4c2 Mon Sep 17 00:00:00 2001
From: GitHub Actions
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