1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-03 16:40:05 +08:00
SpaceVim/bundle/nvim-lspconfig/lua/lspconfig/server_configurations/prismals.lua

35 lines
717 B
Lua
Raw Normal View History

local util = require 'lspconfig.util'
2021-10-05 15:13:10 +08:00
local bin_name = 'prisma-language-server'
local cmd = { bin_name, '--stdio' }
2021-10-05 15:13:10 +08:00
if vim.fn.has 'win32' == 1 then
cmd = { 'cmd.exe', '/C', bin_name, '--stdio' }
2021-10-05 15:13:10 +08:00
end
return {
2021-10-05 15:13:10 +08:00
default_config = {
cmd = cmd,
2021-10-05 15:13:10 +08:00
filetypes = { 'prisma' },
settings = {
prisma = {
prismaFmtBinPath = '',
},
},
root_dir = util.root_pattern('.git', 'package.json'),
},
docs = {
description = [[
Language Server for the Prisma JavaScript and TypeScript ORM
2021-10-05 15:13:10 +08:00
`@prisma/language-server` can be installed via npm
```sh
npm install -g @prisma/language-server
```
2021-10-05 15:13:10 +08:00
]],
default_config = {
root_dir = [[root_pattern(".git", "package.json")]],
},
},
}