mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-12 02:23:39 +08:00
20 lines
420 B
Lua
20 lines
420 B
Lua
local util = require 'lspconfig.util'
|
|
|
|
return {
|
|
default_config = {
|
|
cmd = { 'ols' },
|
|
filetypes = { 'odin' },
|
|
root_dir = util.root_pattern('ols.json', '.git', '*.odin'),
|
|
},
|
|
docs = {
|
|
description = [[
|
|
https://github.com/DanielGavin/ols
|
|
|
|
`Odin Language Server`.
|
|
]],
|
|
default_config = {
|
|
root_dir = [[util.root_pattern("ols.json", ".git", "*.odin")]],
|
|
},
|
|
},
|
|
}
|