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/lean3ls.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/lean3ls.lua')
| -rw-r--r-- | lsp/lean3ls.lua | 31 |
1 files changed, 16 insertions, 15 deletions
diff --git a/lsp/lean3ls.lua b/lsp/lean3ls.lua index 941ec227..977e04b9 100644 --- a/lsp/lean3ls.lua +++ b/lsp/lean3ls.lua @@ -1,20 +1,21 @@ -local util = require 'lspconfig.util' - ---@brief --- --- https://github.com/leanprover/lean-client-js/tree/master/lean-language-server --- --- Lean installation instructions can be found --- [here](https://leanprover-community.github.io/get_started.html#regular-install). --- --- Once Lean is installed, you can install the Lean 3 language server by running --- ```sh --- npm install -g lean-language-server --- ``` --- --- Note: that if you're using [lean.nvim](https://github.com/Julian/lean.nvim), --- that plugin fully handles the setup of the Lean language server, --- and you shouldn't set up `lean3ls` both with it and `lspconfig`. +--- https://github.com/leanprover/lean-client-js/tree/master/lean-language-server +--- +--- Lean installation instructions can be found +--- [here](https://leanprover-community.github.io/get_started.html#regular-install). +--- +--- Once Lean is installed, you can install the Lean 3 language server by running +--- ```sh +--- npm install -g lean-language-server +--- ``` +--- +--- Note: that if you're using [lean.nvim](https://github.com/Julian/lean.nvim), +--- that plugin fully handles the setup of the Lean language server, +--- and you shouldn't set up `lean3ls` both with it and `lspconfig`. + +local util = require 'lspconfig.util' + return { cmd = { 'lean-language-server', '--stdio', '--', '-M', '4096', '-T', '100000' }, filetypes = { 'lean3' }, |
