1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-15 15:02:47 +01:00

generated: Update

- Updated conform-formatters.json
- Updated lspconfig-servers.json
This commit is contained in:
nixvim-ci[bot] 2025-11-13 12:18:44 +00:00 committed by Gaétan Lepage
parent b254a90b97
commit f1f55f623e
2 changed files with 3 additions and 1 deletions

View file

@ -155,6 +155,7 @@
"phpcbf",
"phpinsights",
"pint",
"pkl",
"prettier",
"prettierd",
"pretty-php",
@ -169,6 +170,7 @@
"python-ly",
"pyupgrade",
"qmlformat",
"racketfmt",
"reformat-gherkin",
"reorder-python-imports",
"rescript-format",

View file

@ -323,7 +323,7 @@
"theme_check": "https://github.com/Shopify/shopify-cli `theme-check-language-server` is\nbundled with `shopify-cli` or it can also be installed via\nhttps://github.com/Shopify/theme-check#installation **NOTE:** If\ninstalled via Homebrew, `cmd` must be set to 'theme-check-liquid-server'\n\n``` lua\nvim.lsp.config('theme_check, {\n cmd = { 'theme-check-liquid-server' }\n})\n```",
"thriftls": "https://github.com/joyme123/thrift-ls you can install thriftls by mason\nor download binary here: https://github.com/joyme123/thrift-ls/releases",
"tilt_ls": "https://github.com/tilt-dev/tilt Tilt language server. You might need to\nadd filetype detection manually:\n\n``` vim\nautocmd BufRead Tiltfile setf=tiltfile\n```",
"tinymist": "https://github.com/Myriad-Dreamin/tinymist An integrated language\nservice for Typst \\[taɪpst\\]. You can also call it \"微霭\" \\[wēi ǎi\\] in\nChinese. Currently some of Tinymist's workspace commands are supported,\nnamely: `LspTinymistExportSvg`, `LspTinymistExportPng`,\n`LspTinymistExportPdf`LspTinymistExportMarkdown`,`LspTinymistExportText`,`LspTinymistExportQuery`,`LspTinymistExportAnsiHighlight`,`LspTinymistGetServerInfo`,`LspTinymistGetDocumentTrace`,`LspTinymistGetWorkspaceLabels`, and`LspTinymistGetDocumentMetrics\\`.",
"tinymist": "https://github.com/Myriad-Dreamin/tinymist An integrated language\nservice for Typst \\[taɪpst\\]. You can also call it \"微霭\" \\[wēi ǎi\\] in\nChinese. Currently some of Tinymist's workspace commands are supported,\nnamely: `LspTinymistExportSvg`, `LspTinymistExportPng`,\n`LspTinymistExportPdf`, `LspTinymistExportMarkdown`,\n`LspTinymistExportText`, `LspTinymistExportQuery`,\n`LspTinymistExportAnsiHighlight`, `LspTinymistGetServerInfo`,\n`LspTinymistGetDocumentTrace`, `LspTinymistGetWorkspaceLabels`,\n`LspTinymistGetDocumentMetrics`, and `LspTinymistPinMain`.",
"tofu_ls": "[OpenTofu Language Server](https://github.com/opentofu/tofu-ls)",
"tombi": "https://tombi-toml.github.io/tombi/ Language server for Tombi, a TOML\ntoolkit.",
"ts_ls": "https://github.com/typescript-language-server/typescript-language-server\n`ts_ls`, aka `typescript-language-server`, is a Language Server Protocol\nimplementation for TypeScript wrapping `tsserver`. Note that `ts_ls` is\nnot `tsserver`. `typescript-language-server` depends on `typescript`.\nBoth packages can be installed via `npm`:\n\n``` sh\nnpm install -g typescript typescript-language-server\n```\n\nTo configure typescript language server, add a\n[`tsconfig.json`](https://www.typescriptlang.org/docs/handbook/tsconfig-json.html)\nor\n[`jsconfig.json`](https://code.visualstudio.com/docs/languages/jsconfig)\nto the root of your project. Here's an example that disables type\nchecking in JavaScript files.\n\n``` json\n{\n \"compilerOptions\": {\n \"module\": \"commonjs\",\n \"target\": \"es6\",\n \"checkJs\": false\n },\n \"exclude\": [\n \"node_modules\"\n ]\n}\n```\n\nUse the `:LspTypescriptSourceAction` command to see \"whole file\"\n(\"source\") code-actions such as: - organize imports - remove unused code\n\\### Monorepo support `ts_ls` supports monorepos by default. It will\nautomatically find the `tsconfig.json` or `jsconfig.json` corresponding\nto the package you are working on. This works without the need of\nspawning multiple instances of `ts_ls`, saving memory. It is recommended\nto use the same version of TypeScript in all packages, and therefore\nhave it available in your workspace root. The location of the TypeScript\nbinary will be determined automatically, but only once.",