diff options
| author | Justin M. Keyes <justinkz@gmail.com> | 2025-04-18 17:44:38 +0200 |
|---|---|---|
| committer | Justin M. Keyes <justinkz@gmail.com> | 2025-04-18 17:44:38 +0200 |
| commit | f8b5cbe6312b568def1f91d747e2cdb8984fdf2e (patch) | |
| tree | c1baf319b22d8ccc7d3468276b5ba9a26dfa2775 /lsp/idris2_lsp.lua | |
| parent | feat: angularls #3746 (diff) | |
| download | nvim-lspconfig-f8b5cbe6312b568def1f91d747e2cdb8984fdf2e.tar nvim-lspconfig-f8b5cbe6312b568def1f91d747e2cdb8984fdf2e.tar.gz nvim-lspconfig-f8b5cbe6312b568def1f91d747e2cdb8984fdf2e.tar.bz2 nvim-lspconfig-f8b5cbe6312b568def1f91d747e2cdb8984fdf2e.tar.lz nvim-lspconfig-f8b5cbe6312b568def1f91d747e2cdb8984fdf2e.tar.xz nvim-lspconfig-f8b5cbe6312b568def1f91d747e2cdb8984fdf2e.tar.zst nvim-lspconfig-f8b5cbe6312b568def1f91d747e2cdb8984fdf2e.zip | |
docs: cleanup
- brief should live at the top of each file
- fix indentation for some docs
Diffstat (limited to 'lsp/idris2_lsp.lua')
| -rw-r--r-- | lsp/idris2_lsp.lua | 61 |
1 files changed, 31 insertions, 30 deletions
diff --git a/lsp/idris2_lsp.lua b/lsp/idris2_lsp.lua index c33c3331..3997863b 100644 --- a/lsp/idris2_lsp.lua +++ b/lsp/idris2_lsp.lua @@ -1,35 +1,36 @@ -local util = require 'lspconfig.util' - ---@brief --- --- https://github.com/idris-community/idris2-lsp --- --- The Idris 2 language server. --- --- Plugins for the Idris 2 filetype include --- [Idris2-Vim](https://github.com/edwinb/idris2-vim) (fewer features, stable) and --- [Nvim-Idris2](https://github.com/ShinKage/nvim-idris2) (cutting-edge, --- experimental). --- --- Idris2-Lsp requires a build of Idris 2 that includes the "Idris 2 API" package. --- Package managers with known support for this build include the --- [AUR](https://aur.archlinux.org/packages/idris2/) and --- [Homebrew](https://formulae.brew.sh/formula/idris2#default). --- --- If your package manager does not support the Idris 2 API, you will need to build --- Idris 2 from source. Refer to the --- [the Idris 2 installation instructions](https://github.com/idris-lang/Idris2/blob/main/INSTALL.md) --- for details. Steps 5 and 8 are listed as "optional" in that guide, but they are --- necessary in order to make the Idris 2 API available. --- --- You need to install a version of Idris2-Lsp that is compatible with your --- version of Idris 2. There should be a branch corresponding to every released --- Idris 2 version after v0.4.0. Use the latest commit on that branch. For example, --- if you have Idris v0.5.1, you should use the v0.5.1 branch of Idris2-Lsp. --- --- If your Idris 2 version is newer than the newest Idris2-Lsp branch, use the --- latest commit on the `master` branch, and set a reminder to check the Idris2-Lsp --- repo for the release of a compatible versioned branch. +--- https://github.com/idris-community/idris2-lsp +--- +--- The Idris 2 language server. +--- +--- Plugins for the Idris 2 filetype include +--- [Idris2-Vim](https://github.com/edwinb/idris2-vim) (fewer features, stable) and +--- [Nvim-Idris2](https://github.com/ShinKage/nvim-idris2) (cutting-edge, +--- experimental). +--- +--- Idris2-Lsp requires a build of Idris 2 that includes the "Idris 2 API" package. +--- Package managers with known support for this build include the +--- [AUR](https://aur.archlinux.org/packages/idris2/) and +--- [Homebrew](https://formulae.brew.sh/formula/idris2#default). +--- +--- If your package manager does not support the Idris 2 API, you will need to build +--- Idris 2 from source. Refer to the +--- [the Idris 2 installation instructions](https://github.com/idris-lang/Idris2/blob/main/INSTALL.md) +--- for details. Steps 5 and 8 are listed as "optional" in that guide, but they are +--- necessary in order to make the Idris 2 API available. +--- +--- You need to install a version of Idris2-Lsp that is compatible with your +--- version of Idris 2. There should be a branch corresponding to every released +--- Idris 2 version after v0.4.0. Use the latest commit on that branch. For example, +--- if you have Idris v0.5.1, you should use the v0.5.1 branch of Idris2-Lsp. +--- +--- If your Idris 2 version is newer than the newest Idris2-Lsp branch, use the +--- latest commit on the `master` branch, and set a reminder to check the Idris2-Lsp +--- repo for the release of a compatible versioned branch. + +local util = require 'lspconfig.util' + return { cmd = { 'idris2-lsp' }, filetypes = { 'idris2' }, |
