diff options
| author | github-actions <github-actions@github.com> | 2022-12-03 08:29:51 +0000 |
|---|---|---|
| committer | github-actions <github-actions@github.com> | 2022-12-03 08:29:51 +0000 |
| commit | f938e3b68675770471d5d03ffb595abdc9410b31 (patch) | |
| tree | 9d7908743ae7414b5ca625ab1615da8769e02221 | |
| parent | fix(ansiblels): update ansiblels default config (#2286) (diff) | |
| download | nvim-lspconfig-f938e3b68675770471d5d03ffb595abdc9410b31.tar nvim-lspconfig-f938e3b68675770471d5d03ffb595abdc9410b31.tar.gz nvim-lspconfig-f938e3b68675770471d5d03ffb595abdc9410b31.tar.bz2 nvim-lspconfig-f938e3b68675770471d5d03ffb595abdc9410b31.tar.lz nvim-lspconfig-f938e3b68675770471d5d03ffb595abdc9410b31.tar.xz nvim-lspconfig-f938e3b68675770471d5d03ffb595abdc9410b31.tar.zst nvim-lspconfig-f938e3b68675770471d5d03ffb595abdc9410b31.zip | |
docs: update server_configurations.md
skip-checks: true
| -rw-r--r-- | doc/server_configurations.md | 26 | ||||
| -rw-r--r-- | doc/server_configurations.txt | 26 |
2 files changed, 28 insertions, 24 deletions
diff --git a/doc/server_configurations.md b/doc/server_configurations.md index 8df65cb6..d2932e0c 100644 --- a/doc/server_configurations.md +++ b/doc/server_configurations.md @@ -366,19 +366,21 @@ require'lspconfig'.ansiblels.setup{} ```lua { ansible = { - path = "ansible" - }, - executionEnvironment = { - enabled = false - }, - python = { - interpreterPath = "python" - }, - validation = { - enabled = true, - lint = { + ansible = { + path = "ansible" + }, + executionEnvironment = { + enabled = false + }, + python = { + interpreterPath = "python" + }, + validation = { enabled = true, - path = "ansible-lint" + lint = { + enabled = true, + path = "ansible-lint" + } } } } diff --git a/doc/server_configurations.txt b/doc/server_configurations.txt index 8df65cb6..d2932e0c 100644 --- a/doc/server_configurations.txt +++ b/doc/server_configurations.txt @@ -366,19 +366,21 @@ require'lspconfig'.ansiblels.setup{} ```lua { ansible = { - path = "ansible" - }, - executionEnvironment = { - enabled = false - }, - python = { - interpreterPath = "python" - }, - validation = { - enabled = true, - lint = { + ansible = { + path = "ansible" + }, + executionEnvironment = { + enabled = false + }, + python = { + interpreterPath = "python" + }, + validation = { enabled = true, - path = "ansible-lint" + lint = { + enabled = true, + path = "ansible-lint" + } } } } |
