mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-20 16:15:43 +02:00
generated: Update
- Updated efmls-configs.nix - Updated lspconfig-servers.json - Manually adjusted `lsp-ai` description
This commit is contained in:
parent
db27a88146
commit
92eec7603f
2 changed files with 68 additions and 2 deletions
|
@ -1,6 +1,48 @@
|
|||
# WARNING: DO NOT EDIT
|
||||
# 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 = {
|
||||
formatter = {
|
||||
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 = {
|
||||
formatter = {
|
||||
lang = "fennel";
|
||||
|
@ -916,6 +980,7 @@
|
|||
"black"
|
||||
"isort"
|
||||
"ruff"
|
||||
"ruff_sort"
|
||||
"yapf"
|
||||
];
|
||||
};
|
||||
|
@ -1178,6 +1243,7 @@
|
|||
lang = "sql";
|
||||
possible = [
|
||||
"sql-formatter"
|
||||
"sqlfluff"
|
||||
];
|
||||
};
|
||||
linter = {
|
||||
|
|
|
@ -707,7 +707,7 @@
|
|||
},
|
||||
{
|
||||
"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"
|
||||
},
|
||||
{
|
||||
|
@ -1615,7 +1615,7 @@
|
|||
},
|
||||
{
|
||||
"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"
|
||||
},
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue