mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-04 02:50:05 +08:00
25 lines
772 B
Lua
Vendored
25 lines
772 B
Lua
Vendored
local util = require 'lspconfig.util'
|
|
|
|
local bin_name = 'clarity-lsp'
|
|
if vim.fn.has 'win32' == 1 then
|
|
bin_name = bin_name .. '.cmd'
|
|
end
|
|
|
|
return {
|
|
default_config = {
|
|
cmd = { bin_name },
|
|
filetypes = { 'clar', 'clarity' },
|
|
root_dir = util.root_pattern '.git',
|
|
},
|
|
docs = {
|
|
description = [[
|
|
`clarity-lsp` is a language server for the Clarity language. Clarity is a decidable smart contract language that optimizes for predictability and security. Smart contracts allow developers to encode essential business logic on a blockchain.
|
|
|
|
To learn how to configure the clarity language server, see the [clarity-lsp documentation](https://github.com/hirosystems/clarity-lsp).
|
|
]],
|
|
default_config = {
|
|
root_dir = [[root_pattern(".git")]],
|
|
},
|
|
},
|
|
}
|