mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-12 02:23:39 +08:00
17 lines
396 B
Lua
17 lines
396 B
Lua
|
local util = require 'lspconfig.util'
|
|||
|
|
|||
|
return {
|
|||
|
default_config = {
|
|||
|
cmd = { 'tinymist' },
|
|||
|
filetypes = { 'typst' },
|
|||
|
root_dir = util.find_git_ancestor,
|
|||
|
single_file_support = false,
|
|||
|
},
|
|||
|
docs = {
|
|||
|
description = [[
|
|||
|
https://github.com/Myriad-Dreamin/tinymist
|
|||
|
An integrated language service for Typst [taɪpst]. You can also call it "微霭" [wēi ǎi] in Chinese.
|
|||
|
]],
|
|||
|
},
|
|||
|
}
|