diff options
| author | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2025-04-15 13:26:58 +0000 |
|---|---|---|
| committer | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2025-04-15 13:26:58 +0000 |
| commit | d52d2b081e4fe687db30ff1b15851e081a17405a (patch) | |
| tree | 62f20835dd8087dbacfe2d925e6bc291f1ca2c8c | |
| parent | feat(biome): vim.lsp.config with workspace_required, root_dir #3727 (diff) | |
| download | nvim-lspconfig-d52d2b081e4fe687db30ff1b15851e081a17405a.tar nvim-lspconfig-d52d2b081e4fe687db30ff1b15851e081a17405a.tar.gz nvim-lspconfig-d52d2b081e4fe687db30ff1b15851e081a17405a.tar.bz2 nvim-lspconfig-d52d2b081e4fe687db30ff1b15851e081a17405a.tar.lz nvim-lspconfig-d52d2b081e4fe687db30ff1b15851e081a17405a.tar.xz nvim-lspconfig-d52d2b081e4fe687db30ff1b15851e081a17405a.tar.zst nvim-lspconfig-d52d2b081e4fe687db30ff1b15851e081a17405a.zip | |
docs: update configs.md
skip-checks: true
| -rw-r--r-- | doc/configs.md | 32 | ||||
| -rw-r--r-- | doc/configs.txt | 30 |
2 files changed, 60 insertions, 2 deletions
diff --git a/doc/configs.md b/doc/configs.md index 9557ac87..97dab6f6 100644 --- a/doc/configs.md +++ b/doc/configs.md @@ -28,6 +28,7 @@ Nvim by running `:help lspconfig-all`. - [bazelrc_lsp](#bazelrc_lsp) - [beancount](#beancount) - [bicep](#bicep) +- [biome](#biome) - [bitbake_language_server](#bitbake_language_server) - [blueprint_ls](#blueprint_ls) - [bqls](#bqls) @@ -1374,6 +1375,35 @@ Default config: --- +## biome + +https://biomejs.dev + +Toolchain of the web. [Successor of Rome](https://biomejs.dev/blog/annoucing-biome). + +```sh +npm install [-g] @biomejs/biome +``` + +Snippet to enable the language server: +```lua +require'lspconfig'.biome.setup{} +``` + +Default config: +- `cmd` : + ```lua + { "biome", "lsp-proxy" } + ``` +- `filetypes` : + ```lua + { "astro", "css", "graphql", "javascript", "javascriptreact", "json", "jsonc", "svelte", "typescript", "typescript.tsx", "typescriptreact", "vue" } + ``` +- `root_dir` source (use "gF" to open): [../lsp/biome.lua:12](../lsp/biome.lua#L12) +- `workspace_required` : `true` + +--- + ## bitbake_language_server 🛠️ bitbake language server @@ -7067,7 +7097,7 @@ Default config: ``` - `cmd` : ```lua - { "OmniSharp", "-z", "--hostPID", "1844", "DotNet:enablePackageRestore=false", "--encoding", "utf-8", "--languageserver" } + { "OmniSharp", "-z", "--hostPID", "1869", "DotNet:enablePackageRestore=false", "--encoding", "utf-8", "--languageserver" } ``` - `filetypes` : ```lua diff --git a/doc/configs.txt b/doc/configs.txt index 8154ee12..2bf1de47 100644 --- a/doc/configs.txt +++ b/doc/configs.txt @@ -1021,6 +1021,34 @@ Default config: ------------------------------------------------------------------------------ +biome + +https://biomejs.dev + +Toolchain of the web. [Successor of Rome](https://biomejs.dev/blog/annoucing-biome). + +```sh +npm install [-g] @biomejs/biome +``` + +Snippet to enable the language server: >lua + vim.lsp.enable('biome') + + +Default config: +- `cmd` : + ```lua + { "biome", "lsp-proxy" } + ``` +- `filetypes` : + ```lua + { "astro", "css", "graphql", "javascript", "javascriptreact", "json", "jsonc", "svelte", "typescript", "typescript.tsx", "typescriptreact", "vue" } + ``` +- `root_dir` source (use "gF" to open): [../lsp/biome.lua:12](../lsp/biome.lua#L12) +- `workspace_required` : `true` + + +------------------------------------------------------------------------------ bitbake_language_server 🛠️ bitbake language server @@ -6552,7 +6580,7 @@ Default config: ``` - `cmd` : ```lua - { "OmniSharp", "-z", "--hostPID", "1844", "DotNet:enablePackageRestore=false", "--encoding", "utf-8", "--languageserver" } + { "OmniSharp", "-z", "--hostPID", "1869", "DotNet:enablePackageRestore=false", "--encoding", "utf-8", "--languageserver" } ``` - `filetypes` : ```lua |
