aboutsummaryrefslogtreecommitdiffstats
path: root/doc/server_configurations.md
diff options
context:
space:
mode:
authorgithub-actions[bot] <github-actions[bot]@users.noreply.github.com>2024-06-10 06:09:58 +0000
committergithub-actions[bot] <github-actions[bot]@users.noreply.github.com>2024-06-10 06:09:58 +0000
commit4d38bece98300e3e5cd24a9aa0d0ebfea4951c16 (patch)
tree4febe28a5da170907465f7fcb2c4ff1b0d9c0f8a /doc/server_configurations.md
parentfeat(bitbake): add language-server-bitbake support (#3199) (diff)
downloadnvim-lspconfig-4d38bece98300e3e5cd24a9aa0d0ebfea4951c16.tar
nvim-lspconfig-4d38bece98300e3e5cd24a9aa0d0ebfea4951c16.tar.gz
nvim-lspconfig-4d38bece98300e3e5cd24a9aa0d0ebfea4951c16.tar.bz2
nvim-lspconfig-4d38bece98300e3e5cd24a9aa0d0ebfea4951c16.tar.lz
nvim-lspconfig-4d38bece98300e3e5cd24a9aa0d0ebfea4951c16.tar.xz
nvim-lspconfig-4d38bece98300e3e5cd24a9aa0d0ebfea4951c16.tar.zst
nvim-lspconfig-4d38bece98300e3e5cd24a9aa0d0ebfea4951c16.zip
docs: update server_configurations.md
skip-checks: true
Diffstat (limited to 'doc/server_configurations.md')
-rw-r--r--doc/server_configurations.md41
1 files changed, 41 insertions, 0 deletions
diff --git a/doc/server_configurations.md b/doc/server_configurations.md
index 585abd6e..363bbc90 100644
--- a/doc/server_configurations.md
+++ b/doc/server_configurations.md
@@ -27,6 +27,7 @@ autogenerated from the Lua files. You can view this file in Nvim by running
- [bicep](#bicep)
- [biome](#biome)
- [bitbake_language_server](#bitbake_language_server)
+- [bitbake_ls](#bitbake_ls)
- [blueprint_ls](#blueprint_ls)
- [bqnlsp](#bqnlsp)
- [bright_script](#bright_script)
@@ -1304,6 +1305,46 @@ require'lspconfig'.bitbake_language_server.setup{}
```
+## bitbake_ls
+
+https://github.com/yoctoproject/vscode-bitbake/tree/staging/server
+https://www.npmjs.com/package/language-server-bitbake
+
+Official Bitbake Language Server for the Yocto Project.
+
+Can be installed from npm or github.
+
+```
+npm install -g language-server-bitbake
+```
+
+
+
+**Snippet to enable the language server:**
+```lua
+require'lspconfig'.bitbake_ls.setup{}
+```
+
+
+**Default values:**
+ - `cmd` :
+ ```lua
+ { "language-server-bitbake", "--stdio" }
+ ```
+ - `filetypes` :
+ ```lua
+ { "bitbake" }
+ ```
+ - `root_dir` :
+ ```lua
+ util.find_git_ancestor
+ ```
+ - `single_file_support` :
+ ```lua
+ false
+ ```
+
+
## blueprint_ls
https://gitlab.gnome.org/jwestman/blueprint-compiler