feat(nvim): set dockerignore fts to gitignore

This commit is contained in:
Price Hiller 2022-11-07 02:58:47 -06:00
parent fb4e36305b
commit 12a0f2a981

View File

@ -4,6 +4,7 @@ M.setup = function()
vim.filetype.add({
pattern = {
[".*%.dockerfile"] = "dockerfile",
[".*%.dockerignore"] = "gitignore"
},
})
end