1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-12-19 15:31:13 +01:00

generated: Update

- Updated conform-formatters.json
- Updated lspconfig-servers.json
This commit is contained in:
nixvim-ci[bot] 2025-12-17 12:19:32 +00:00 committed by Matt Sturgeon
parent 23247738b5
commit 23d1ff0839
2 changed files with 4 additions and 0 deletions

View file

@ -147,6 +147,8 @@
"odinfmt",
"opa_fmt",
"ormolu",
"oxfmt",
"oxlint",
"packer_fmt",
"pangu",
"perlimports",

View file

@ -32,6 +32,7 @@
"blueprint_ls": "https://gitlab.gnome.org/jwestman/blueprint-compiler\n`blueprint-compiler` can be installed via your system package manager.\nLanguage server for the blueprint markup language, written in python and\npart of the blueprint-compiler.",
"bqls": "https://github.com/kitagry/bqls The `bqls` BigQuery language server can\nbe installed by running:\n\n``` sh\n$ go install github.com/kitagry/bqls@latest\n```",
"bright_script": "https://github.com/RokuCommunity/brighterscript `brightscript` can be\ninstalled via `npm`:\n\n``` sh\nnpm install -g brighterscript\n```",
"brioche": "https://github.com/brioche-dev/brioche `Brioche Language Server`.",
"bsl_ls": "https://github.com/1c-syntax/bsl-language-server Language Server\nProtocol implementation for 1C (BSL) - 1C:Enterprise 8 and OneScript\nlanguages.",
"buck2": "https://github.com/facebook/buck2 Build system, successor to Buck To\nbetter detect Buck2 project files, the following can be added:\n\n vim.cmd [[ autocmd BufRead,BufNewFile *.bxl,BUCK,TARGETS set filetype=bzl ]]",
"buddy_ls": "https://github.com/buddy-compiler/buddy-mlir#buddy-lsp-server The\nLanguage Server for the buddy-mlir, a drop-in replacement for\nmlir-lsp-server, supporting new dialects defined in buddy-mlir.\n`buddy-lsp-server` can be installed at the buddy-mlir repository\n(buddy-compiler/buddy-mlir)",
@ -143,6 +144,7 @@
"html": "https://github.com/hrsh7th/vscode-langservers-extracted\n`vscode-html-language-server` can be installed via `npm`:\n\n``` sh\nnpm i -g vscode-langservers-extracted\n```\n\nNeovim does not currently include built-in snippets.\n`vscode-html-language-server` only provides completions when snippet\nsupport is enabled. To enable completion, install a snippet plugin and\nadd the following override to your language client capabilities during\nsetup. The code-formatting feature of the lsp can be controlled with the\n`provideFormatter` option.\n\n``` lua\n--Enable (broadcasting) snippet capability for completion\nlocal capabilities = vim.lsp.protocol.make_client_capabilities()\ncapabilities.textDocument.completion.completionItem.snippetSupport = true\nvim.lsp.config('html', {\n capabilities = capabilities,\n})\n```",
"htmx": "https://github.com/ThePrimeagen/htmx-lsp `htmx-lsp` can be installed via\n`cargo`:\n\n``` sh\ncargo install htmx-lsp\n```\n\nLsp is still very much work in progress and experimental. Use at your\nown risk.",
"hydra_lsp": "https://github.com/Retsediv/hydra-lsp LSP for Hydra Python package\nconfig files.",
"hylo_ls": "https://github.com/hylo-lang/hylo-language-server A language server for\nthe Hylo programming language.",
"hyprls": "https://github.com/hyprland-community/hyprls `hyprls` can be installed\nvia `go`:\n\n``` sh\ngo install github.com/hyprland-community/hyprls/cmd/hyprls@latest\n```",
"idris2_lsp": "https://github.com/idris-community/idris2-lsp The Idris 2 language\nserver. Plugins for the Idris 2 filetype include\n[Idris2-Vim](https://github.com/edwinb/idris2-vim) (fewer features,\nstable) and [Nvim-Idris2](https://github.com/ShinKage/nvim-idris2)\n(cutting-edge, experimental). Idris2-Lsp requires a build of Idris 2\nthat includes the \"Idris 2 API\" package. Package managers with known\nsupport for this build include the\n[AUR](https://aur.archlinux.org/packages/idris2/) and\n[Homebrew](https://formulae.brew.sh/formula/idris2#default). If your\npackage manager does not support the Idris 2 API, you will need to build\nIdris 2 from source. Refer to the [the Idris 2 installation\ninstructions](https://github.com/idris-lang/Idris2/blob/main/INSTALL.md)\nfor details. Steps 5 and 8 are listed as \"optional\" in that guide, but\nthey are necessary in order to make the Idris 2 API available. You need\nto install a version of Idris2-Lsp that is compatible with your version\nof Idris 2. There should be a branch corresponding to every released\nIdris 2 version after v0.4.0. Use the latest commit on that branch. For\nexample, if you have Idris v0.5.1, you should use the v0.5.1 branch of\nIdris2-Lsp. If your Idris 2 version is newer than the newest Idris2-Lsp\nbranch, use the latest commit on the `master` branch, and set a reminder\nto check the Idris2-Lsp repo for the release of a compatible versioned\nbranch.",
"intelephense": "https://intelephense.com/ `intelephense` can be installed via `npm`:\n\n``` sh\nnpm install -g intelephense\n```\n\n``` lua\n-- See https://github.com/bmewburn/intelephense-docs/blob/master/installation.md#initialisation-options\ninit_options = {\n storagePath = …, -- Optional absolute path to storage dir. Defaults to os.tmpdir().\n globalStoragePath = …, -- Optional absolute path to a global storage dir. Defaults to os.homedir().\n licenceKey = …, -- Optional licence key or absolute path to a text file containing the licence key.\n clearCache = …, -- Optional flag to clear server state. State can also be cleared by deleting {storagePath}/intelephense\n}\n-- See https://github.com/bmewburn/intelephense-docs\nsettings = {\n intelephense = {\n files = {\n maxSize = 1000000;\n };\n };\n}\n```",