mirror of
https://github.com/neovim/nvim-lspconfig.git
synced 2025-12-25 07:21:00 +01:00
12 lines
301 B
Lua
12 lines
301 B
Lua
---@brief
|
|
--- https://github.com/hirosystems/clarinet
|
|
---
|
|
--- Clarinet is the fastest way to build, test, and deploy smart contracts on the Stacks blockchain.
|
|
|
|
---@type vim.lsp.Config
|
|
return {
|
|
cmd = { 'clarinet', 'lsp' },
|
|
filetypes = { 'clar', 'clarity' },
|
|
root_markers = { 'Clarinet.toml' },
|
|
}
|