Set yaml.schema "kubernetes" for autocompletion with nvim-lspconfig

3/13/2021

i try to get kubernetes auto completion going in nvim. I am using neovim nightly (0.5.) with 'neovim-lspconfig' and 'nvim-lua/completion-nvim'. I installed the yaml-language-sever and it is working fine (i know it is working because it is showing errors inside yaml files in nvim).

I am fairly new to lua and nvim-lsp, it might just be a syntax error. I try to configure the server with this lua code:

local lspconfig = require'lspconfig'
lspconfig.yamlls.setup{
    on_attach = require'completion'.on_attach,
    settings = {
        yaml.schemas = { kubernetes = "globPattern" },
    }
}

I tried thousand different ways to write it but i always get Errors like:

Error loading lua string ":lua":5: '}' expected (to close '{' at line 4) near '='

The documentation just says to add server configs via the settings key. But i am not quite sure how.

Anybody got this going? Thanks a lot.

-- Y-Peter
kubernetes
lua
nvim-lspconfig
vim
yaml

1 Answer

4/1/2021

You should change it to

lspconfig.yamlls.setup{
    settings = {
        yaml = {
           schemas = { kubernetes = "globPattern" },
      }
}
-- sakis4440
Source: StackOverflow