Add Docker LSP

This commit is contained in:
Valeriy Filippov
2026-03-06 13:30:31 +03:00
parent 37f0a3c699
commit a7aafb662e
4 changed files with 33 additions and 0 deletions

View File

@@ -14,3 +14,10 @@ vim.filetype.add({
['.*%.tfvars'] = 'terraform.vars'
},
})
-- Docker LSP
vim.filetype.add({
pattern = {
['docker%-compose%.ya?ml'] = 'yaml.docker-compose',
},
})