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

21 lines
432 B
Lua
Raw Normal View History

2023-03-29 11:59:27 +08:00
local util = require 'lspconfig.util'
return {
default_config = {
cmd = { 'crystalline' },
filetypes = { 'crystal' },
root_dir = util.root_pattern 'shard.yml' or util.find_git_ancestor,
single_file_support = true,
},
docs = {
description = [[
https://github.com/elbywan/crystalline
Crystal language server.
]],
default_config = {
root_dir = [[root_pattern('shard.yml', '.git')]],
},
},
}