mirror of
https://github.com/neovim/nvim-lspconfig.git
synced 2026-05-07 09:36:09 +02:00
35 lines
865 B
Lua
35 lines
865 B
Lua
-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
-- This config is DEPRECATED.
|
|
-- Use the configs in `lsp/` instead (requires Nvim 0.11).
|
|
--
|
|
-- ALL configs in `lua/lspconfig/configs/` will be DELETED.
|
|
-- They exist only to support Nvim 0.10 or older.
|
|
-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
local util = require 'lspconfig.util'
|
|
|
|
return {
|
|
default_config = {
|
|
cmd = { 'cds-lsp', '--stdio' },
|
|
filetypes = { 'cds' },
|
|
-- init_options = { provideFormatter = true }, -- needed to enable formatting capabilities
|
|
root_dir = util.root_pattern('package.json', 'db', 'srv'),
|
|
single_file_support = true,
|
|
settings = {
|
|
cds = { validate = true },
|
|
},
|
|
},
|
|
docs = {
|
|
description = [[
|
|
|
|
https://cap.cloud.sap/docs/
|
|
|
|
`cds-lsp` can be installed via `npm`:
|
|
|
|
```sh
|
|
npm i -g @sap/cds-lsp
|
|
```
|
|
|
|
]],
|
|
},
|
|
}
|