diff options
| author | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2023-09-09 00:33:57 +0000 |
|---|---|---|
| committer | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2023-09-09 00:33:57 +0000 |
| commit | d177ad277a638f262edb73c75ffe33e377b95dc5 (patch) | |
| tree | cdc437282bd15032277d24378481a450f85f0e62 | |
| parent | feat: add `biome` (`rome` successor) (#2790) (diff) | |
| download | nvim-lspconfig-d177ad277a638f262edb73c75ffe33e377b95dc5.tar nvim-lspconfig-d177ad277a638f262edb73c75ffe33e377b95dc5.tar.gz nvim-lspconfig-d177ad277a638f262edb73c75ffe33e377b95dc5.tar.bz2 nvim-lspconfig-d177ad277a638f262edb73c75ffe33e377b95dc5.tar.lz nvim-lspconfig-d177ad277a638f262edb73c75ffe33e377b95dc5.tar.xz nvim-lspconfig-d177ad277a638f262edb73c75ffe33e377b95dc5.tar.zst nvim-lspconfig-d177ad277a638f262edb73c75ffe33e377b95dc5.zip | |
docs: update server_configurations.md
skip-checks: true
| -rw-r--r-- | doc/server_configurations.md | 40 | ||||
| -rw-r--r-- | doc/server_configurations.txt | 40 |
2 files changed, 80 insertions, 0 deletions
diff --git a/doc/server_configurations.md b/doc/server_configurations.md index 12ce25fb..61546c6f 100644 --- a/doc/server_configurations.md +++ b/doc/server_configurations.md @@ -19,6 +19,7 @@ autogenerated from the Lua files. You can view this file in Nvim by running - [bashls](#bashls) - [beancount](#beancount) - [bicep](#bicep) +- [biome](#biome) - [blueprint_ls](#blueprint_ls) - [bright_script](#bright_script) - [bsl_ls](#bsl_ls) @@ -1074,6 +1075,43 @@ require'lspconfig'.bicep.setup{} ``` +## 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 values:** + - `cmd` : + ```lua + { "biome", "lsp-proxy" } + ``` + - `filetypes` : + ```lua + { "javascript", "javascriptreact", "json", "jsonc", "typescript", "typescript.tsx", "typescriptreact" } + ``` + - `root_dir` : + ```lua + root_pattern('package.json', 'node_modules', '.git', 'biome.json') + ``` + - `single_file_support` : + ```lua + true + ``` + + ## blueprint_ls https://gitlab.gnome.org/jwestman/blueprint-compiler @@ -7767,6 +7805,8 @@ https://rome.tools Language server for the Rome Frontend Toolchain. +(Unmaintained, use [Biome](https://biomejs.dev/blog/annoucing-biome) instead.) + ```sh npm install [-g] rome ``` diff --git a/doc/server_configurations.txt b/doc/server_configurations.txt index 12ce25fb..61546c6f 100644 --- a/doc/server_configurations.txt +++ b/doc/server_configurations.txt @@ -19,6 +19,7 @@ autogenerated from the Lua files. You can view this file in Nvim by running - [bashls](#bashls) - [beancount](#beancount) - [bicep](#bicep) +- [biome](#biome) - [blueprint_ls](#blueprint_ls) - [bright_script](#bright_script) - [bsl_ls](#bsl_ls) @@ -1074,6 +1075,43 @@ require'lspconfig'.bicep.setup{} ``` +## 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 values:** + - `cmd` : + ```lua + { "biome", "lsp-proxy" } + ``` + - `filetypes` : + ```lua + { "javascript", "javascriptreact", "json", "jsonc", "typescript", "typescript.tsx", "typescriptreact" } + ``` + - `root_dir` : + ```lua + root_pattern('package.json', 'node_modules', '.git', 'biome.json') + ``` + - `single_file_support` : + ```lua + true + ``` + + ## blueprint_ls https://gitlab.gnome.org/jwestman/blueprint-compiler @@ -7767,6 +7805,8 @@ https://rome.tools Language server for the Rome Frontend Toolchain. +(Unmaintained, use [Biome](https://biomejs.dev/blog/annoucing-biome) instead.) + ```sh npm install [-g] rome ``` |
