summaryrefslogtreecommitdiff
path: root/lua/plugins/lang/ansible.lua
blob: 52c79d01f086191f31991d6d5a80aa9c3f642d1b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
return {
   {
      "arouene/vim-ansible-vault",
      ft = { "ansible", "yaml.ansible", "yaml" },
   },

   {
      "neovim/nvim-lspconfig",
      opts = function(_, opts)
         if type(opts) == "table" then
            opts.servers = opts.servers or {}
            opts.servers.ansiblels = {}
         end
      end,
   },
}