add support for ansible yaml syntax

This commit is contained in:
Alexander Navarro 2024-12-11 09:03:31 -03:00
parent 8387619a3a
commit baa1a6e053
2 changed files with 12 additions and 2 deletions

View file

@ -69,7 +69,7 @@ return {
end
-- Enable the following language servers
-- To see options and cofigurations: https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md
-- To see options and cofigurations `:help lspconfig-all`
local servers = {
astro = {},
bashls = {},
@ -132,7 +132,16 @@ return {
},
},
sqlls = {},
yamlls = {},
yamlls = {
settings = {
yaml = {
schemas = {},
customTags = {
"!vault" -- ansible encrypted vars support
}
}
},
},
lua_ls = {
settings = {
Lua = {