diff options
| author | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2025-07-14 16:47:56 +0000 |
|---|---|---|
| committer | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2025-07-14 16:47:56 +0000 |
| commit | 8c5efd1269160fc2fdf61e3d7176be5015860a8f (patch) | |
| tree | dc4fd9e7e561d9c949d5d02a2e8ed05e4f557f1d | |
| parent | fix(clarinet)!: rename `clarity_lsp` to `clarinet` #3948 (diff) | |
| download | nvim-lspconfig-8c5efd1269160fc2fdf61e3d7176be5015860a8f.tar nvim-lspconfig-8c5efd1269160fc2fdf61e3d7176be5015860a8f.tar.gz nvim-lspconfig-8c5efd1269160fc2fdf61e3d7176be5015860a8f.tar.bz2 nvim-lspconfig-8c5efd1269160fc2fdf61e3d7176be5015860a8f.tar.lz nvim-lspconfig-8c5efd1269160fc2fdf61e3d7176be5015860a8f.tar.xz nvim-lspconfig-8c5efd1269160fc2fdf61e3d7176be5015860a8f.tar.zst nvim-lspconfig-8c5efd1269160fc2fdf61e3d7176be5015860a8f.zip | |
docs: update configs.md
skip-checks: true
| -rw-r--r-- | doc/configs.md | 12 | ||||
| -rw-r--r-- | doc/configs.txt | 10 |
2 files changed, 11 insertions, 11 deletions
diff --git a/doc/configs.md b/doc/configs.md index 225b4849..fa358587 100644 --- a/doc/configs.md +++ b/doc/configs.md @@ -47,7 +47,7 @@ Nvim by running `:help lspconfig-all`. - [cds_lsp](#cds_lsp) - [circom-lsp](#circom-lsp) - [clangd](#clangd) -- [clarity_lsp](#clarity_lsp) +- [clarinet](#clarinet) - [clojure_lsp](#clojure_lsp) - [cmake](#cmake) - [cobol_ls](#cobol_ls) @@ -2045,21 +2045,21 @@ Default config: --- -## clarity_lsp +## clarinet -`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. +https://github.com/hirosystems/clarinet - To learn how to configure the clarity language server, see the [clarity-lsp documentation](https://github.com/hirosystems/clarity-lsp). +Clarinet is the fastest way to build, test, and deploy smart contracts on the Stacks blockchain. Snippet to enable the language server: ```lua -vim.lsp.enable('clarity_lsp') +vim.lsp.enable('clarinet') ``` Default config: - `cmd` : ```lua - { "clarity-lsp" } + { "clarinet", "lsp" } ``` - `filetypes` : ```lua diff --git a/doc/configs.txt b/doc/configs.txt index bdd1b5c6..3356bd8c 100644 --- a/doc/configs.txt +++ b/doc/configs.txt @@ -1293,19 +1293,19 @@ Default config: < ------------------------------------------------------------------------------ -clarity_lsp +clarinet -`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. +https://github.com/hirosystems/clarinet - To learn how to configure the clarity language server, see the [clarity-lsp documentation](https://github.com/hirosystems/clarity-lsp). +Clarinet is the fastest way to build, test, and deploy smart contracts on the Stacks blockchain. Snippet to enable the language server: >lua - vim.lsp.enable('clarity_lsp') + vim.lsp.enable('clarinet') Default config: - cmd: >lua - { "clarity-lsp" } + { "clarinet", "lsp" } - filetypes: >lua { "clar", "clarity" } - root_markers: >lua |
