[nvim] Treat files with a .make extension as Makefiles

This commit is contained in:
Eryn Wells 2024-12-05 11:53:16 -08:00
parent 329db6f6de
commit f8c04599c5

View file

@ -0,0 +1,7 @@
-- Filetype detection for Makefiles
-- Eryn Wells <eryn@erynwells.me>
vim.api.nvim_create_autocmd({"BufRead", "BufNewFile"}, {
pattern = "*.make",
command = "setfiletype make",
})