diff options
| author | Jose Soto <josecanhelp@gmail.com> | 2022-03-04 16:06:40 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-03-04 16:06:40 -0800 |
| commit | 80a048e0a8aa9029575c7355698634678165efb4 (patch) | |
| tree | be0de9448721b5b7f55326f26f2166d4bbdbb19f /lua | |
| parent | docs: update server_configurations.md (diff) | |
| download | nvim-lspconfig-80a048e0a8aa9029575c7355698634678165efb4.tar nvim-lspconfig-80a048e0a8aa9029575c7355698634678165efb4.tar.gz nvim-lspconfig-80a048e0a8aa9029575c7355698634678165efb4.tar.bz2 nvim-lspconfig-80a048e0a8aa9029575c7355698634678165efb4.tar.lz nvim-lspconfig-80a048e0a8aa9029575c7355698634678165efb4.tar.xz nvim-lspconfig-80a048e0a8aa9029575c7355698634678165efb4.tar.zst nvim-lspconfig-80a048e0a8aa9029575c7355698634678165efb4.zip | |
feat: add clarity-lsp support (#1755)
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/lspconfig/server_configurations/clarity_lsp.lua | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/lua/lspconfig/server_configurations/clarity_lsp.lua b/lua/lspconfig/server_configurations/clarity_lsp.lua new file mode 100644 index 00000000..2f0697d4 --- /dev/null +++ b/lua/lspconfig/server_configurations/clarity_lsp.lua @@ -0,0 +1,24 @@ +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")]], + }, + }, +} |
