generated: Update

- Updated efmls-configs.nix
- Updated lspconfig-servers.json
- Manually adjusted `lsp-ai` description
This commit is contained in:
github-actions[bot] 2024-10-18 20:56:55 +00:00 committed by Austin Horstman
parent db27a88146
commit 92eec7603f
No known key found for this signature in database
2 changed files with 68 additions and 2 deletions

View file

@ -1,6 +1,48 @@
# WARNING: DO NOT EDIT # WARNING: DO NOT EDIT
# This file is generated with packages.<system>.efmls-configs-sources, which is run automatically by CI # This file is generated with packages.<system>.efmls-configs-sources, which is run automatically by CI
{ {
HTML = {
formatter = {
lang = "HTML";
possible = [ ];
};
linter = {
lang = "HTML";
possible = [
"markuplint"
"alex"
"codespell"
"cspell"
"languagetool"
"proselint"
"redpen"
"textlint"
"vale"
"write_good"
];
};
};
JSON = {
formatter = {
lang = "JSON";
possible = [ ];
};
linter = {
lang = "JSON";
possible = [
"jsonlint"
"alex"
"codespell"
"cspell"
"languagetool"
"proselint"
"redpen"
"textlint"
"vale"
"write_good"
];
};
};
all = { all = {
formatter = { formatter = {
lang = "all languages"; lang = "all languages";
@ -339,6 +381,28 @@
]; ];
}; };
}; };
elixir = {
formatter = {
lang = "elixir";
possible = [
"mix"
];
};
linter = {
lang = "elixir";
possible = [
"alex"
"codespell"
"cspell"
"languagetool"
"proselint"
"redpen"
"textlint"
"vale"
"write_good"
];
};
};
fennel = { fennel = {
formatter = { formatter = {
lang = "fennel"; lang = "fennel";
@ -916,6 +980,7 @@
"black" "black"
"isort" "isort"
"ruff" "ruff"
"ruff_sort"
"yapf" "yapf"
]; ];
}; };
@ -1178,6 +1243,7 @@
lang = "sql"; lang = "sql";
possible = [ possible = [
"sql-formatter" "sql-formatter"
"sqlfluff"
]; ];
}; };
linter = { linter = {

View file

@ -707,7 +707,7 @@
}, },
{ {
"cmd": ["jq-lsp"], "cmd": ["jq-lsp"],
"desc": "https://github.com/wader/jq-lsp Language server for jq, written using\nGo. You can install the server easily using go install:\n\n``` sh\n# install directly\ngo install github.com/wader/jq-lsp@master\n# copy binary to $PATH\ncp $(go env GOPATH)/bin/jq-lsp /usr/local/bin\n```\n\nNote: To activate properly nvim needs to know the jq filetype. You can\nadd it via:\n\n``` lua\nvim.cmd(\\[\\[au BufRead,BufNewFile *.jq setfiletype jq\\]\\])\n```\n", "desc": "https://github.com/wader/jq-lsp Language server for jq, written using\nGo. You can install the server easily using go install:\n\n``` sh\n# install directly\ngo install github.com/wader/jq-lsp@master\n# copy binary to $PATH\ncp $(go env GOPATH)/bin/jq-lsp /usr/local/bin\n```\n\nNote: To activate properly nvim needs to know the jq filetype. You can\nadd it via:\n\n``` lua\nvim.cmd([[au BufRead,BufNewFile *.jq setfiletype jq]])\n```\n",
"name": "jqls" "name": "jqls"
}, },
{ {
@ -1615,7 +1615,7 @@
}, },
{ {
"cmd": ["uvls"], "cmd": ["uvls"],
"desc": "https://codeberg.org/caradhras/uvls\nLanguage server for UVL, written using tree sitter and rust.\nYou can install the server easily using cargo:\n```sh\ngit clone https://codeberg.org/caradhras/uvls\ncd uvls\ncargo install --path .\n```\nNote: To activate properly nvim needs to know the uvl filetype.\nYou can add it via:\n```lua\nvim.cmd(\\[\\[au BufRead,BufNewFile *.uvl setfiletype uvl\\]\\])\n```\n", "desc": "https://codeberg.org/caradhras/uvls\nLanguage server for UVL, written using tree sitter and rust.\nYou can install the server easily using cargo:\n```sh\ngit clone https://codeberg.org/caradhras/uvls\ncd uvls\ncargo install --path .\n```\nNote: To activate properly nvim needs to know the uvl filetype.\nYou can add it via:\n```lua\nvim.cmd([[au BufRead,BufNewFile *.uvl setfiletype uvl]])\n```\n",
"name": "uvls" "name": "uvls"
}, },
{ {