lua/custom/lsp/** configs This commit removes the need for nvim-lspconfig which is replaced by the vim.lsp API. The lsp/ folder is a copy of nvim-lspconfig's lsp/ folder as it makes it easy to modify LSP configurations on the fly. Conform: biome has been replaced with oxfmt
17 lines
360 B
Lua
17 lines
360 B
Lua
---@brief
|
|
---
|
|
--- https://github.com/Freed-Wu/bitbake-language-server
|
|
---
|
|
--- `bitbake-language-server` can be installed via `pip`:
|
|
--- ```sh
|
|
--- pip install bitbake-language-server
|
|
--- ```
|
|
---
|
|
--- Language server for bitbake.
|
|
|
|
---@type vim.lsp.Config
|
|
return {
|
|
cmd = { 'bitbake-language-server' },
|
|
filetypes = { 'bitbake' },
|
|
root_markers = { '.git' },
|
|
}
|