summaryrefslogtreecommitdiff
path: root/start/lspconfig-0.1.3/lua/lspconfig/server_configurations/esbonio.lua
diff options
context:
space:
mode:
authorMichael Smith <mikesmiffy128@gmail.com>2024-07-15 20:05:47 +0100
committerMichael Smith <mikesmiffy128@gmail.com>2024-07-15 20:05:47 +0100
commit522d56557b00246286d803425751a4334f3a94a5 (patch)
tree23ca335a3526197c2a6327ce10bfd58411b0a609 /start/lspconfig-0.1.3/lua/lspconfig/server_configurations/esbonio.lua
parenta7b72fc27edac2305dbf0af807981bd703835b25 (diff)
Update lspconfig, add indent-blanklineHEADmaster
indent-blankline is probably old because I've actually been using it for ages, but I have a strict if-it-ain't-broke policy, so I'm not going to update it. lspconfig *was* broke though with nvim 0.10, so now it's fixed.
Diffstat (limited to 'start/lspconfig-0.1.3/lua/lspconfig/server_configurations/esbonio.lua')
-rw-r--r--start/lspconfig-0.1.3/lua/lspconfig/server_configurations/esbonio.lua55
1 files changed, 0 insertions, 55 deletions
diff --git a/start/lspconfig-0.1.3/lua/lspconfig/server_configurations/esbonio.lua b/start/lspconfig-0.1.3/lua/lspconfig/server_configurations/esbonio.lua
deleted file mode 100644
index a97c26b..0000000
--- a/start/lspconfig-0.1.3/lua/lspconfig/server_configurations/esbonio.lua
+++ /dev/null
@@ -1,55 +0,0 @@
-local util = require 'lspconfig.util'
-
-return {
- default_config = {
- cmd = { 'python3', '-m', 'esbonio' },
- filetypes = { 'rst' },
- root_dir = util.find_git_ancestor,
- },
- docs = {
- description = [[
-https://github.com/swyddfa/esbonio
-
-Esbonio is a language server for [Sphinx](https://www.sphinx-doc.org/en/master/) documentation projects.
-The language server can be installed via pip
-
-```
-pip install esbonio
-```
-
-Since Sphinx is highly extensible you will get best results if you install the language server in the same
-Python environment as the one used to build your documentation. To ensure that the correct Python environment
-is picked up, you can either launch `nvim` with the correct environment activated.
-
-```
-source env/bin/activate
-nvim
-```
-
-Or you can modify the default `cmd` to include the full path to the Python interpreter.
-
-```lua
-require'lspconfig'.esbonio.setup {
- cmd = { '/path/to/virtualenv/bin/python', '-m', 'esbonio' }
-}
-```
-
-Esbonio supports a number of config values passed as `init_options` on startup, for example.
-
-```lua
-require'lspconfig'.esbonio.setup {
- init_options = {
- server = {
- logLevel = "debug"
- },
- sphinx = {
- confDir = "/path/to/docs",
- srcDir = "${confDir}/../docs-src"
- }
-}
-```
-
-A full list and explanation of the available options can be found [here](https://swyddfa.github.io/esbonio/docs/lsp/editors/index.html)
-]],
- },
-}