fix oil map, add ansible filetype

This commit is contained in:
2024-07-02 14:00:16 +03:00
parent 153f3d36c0
commit 8e153ee524
5 changed files with 46 additions and 28 deletions

View File

@@ -0,0 +1,9 @@
vim.filetype.add({
pattern = {
[".*/playbooks/.*%.ya?ml"] = "yaml.ansible",
[".*/roles/.*%.ya?ml"] = "yaml.ansible",
[".*/tasks/.*%.ya?ml"] = "yaml.ansible",
[".*/plays/.*%.ya?ml"] = "yaml.ansible",
},
})