add make filetype

This commit is contained in:
2024-11-25 17:11:09 +02:00
parent 4a596c757b
commit 0334178b6e

View File

@@ -3,3 +3,10 @@ vim.opt_local.shiftwidth = 4
vim.opt_local.softtabstop = 4 vim.opt_local.softtabstop = 4
vim.opt_local.expandtab = false vim.opt_local.expandtab = false
vim.api.nvim_create_autocmd("FileType", {
pattern = "make",
callback = function()
print("Makefile detected and ftplugin loaded!")
end,
})