From 270843073ee3b702edd3e4f7428c7cff15d584a9 Mon Sep 17 00:00:00 2001 From: qvalentin Date: Tue, 2 Jul 2024 14:59:27 +0200 Subject: [PATCH] chore(docs): cleanup readme --- README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index a400cdd..456fc00 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ Helm-ls is a [helm](https://github.com/helm/helm) language server protocol [LSP] * [yaml-language-server config](#yaml-language-server-config) * [Default Configuration](#default-configuration) * [Editor Config examples](#editor-config-examples) - * [Neovim (using nvim-lspconfig)](#neovim-using-nvim-lspconfig) + * [Neovim](#neovim-using-nvim-lspconfig) * [Vim Helm Plugin](#vim-helm-plugin) * [nvim-lspconfig setup](#nvim-lspconfig-setup) * [coc.nvim setup](#cocnvim-setup) @@ -199,7 +199,7 @@ settings = { ## Editor Config examples -### Neovim (using nvim-lspconfig) +### Neovim #### Vim Helm Plugin @@ -217,14 +217,14 @@ Add the following to your neovim lua config: local lspconfig = require('lspconfig') lspconfig.helm_ls.setup { -settings = { - ['helm-ls'] = { - yamlls = { - path = "yaml-language-server", + settings = { + ['helm-ls'] = { + yamlls = { + path = "yaml-language-server", + } } } } -} ``` See [examples/nvim/init.lua](https://github.com/mrjosh/helm-ls/blob/master/examples/nvim/init.lua) for an