all repos

dotfiles @ 0aafc4d

my dotfiles

config/nvim/lua/lsp/providers/yamlls.lua (view raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
return {
  settings = {
    yaml = {
      hover = true,
      completion = true,
      validate = true,
      schemaStore = {
        enable = true,
        url = "https://www.schemastore.org/api/json/catalog.json",
      },
      schemas = {},
    },
  },
}