ftplugin: remove makefile autocmd

This commit is contained in:
2026-01-03 10:27:34 +02:00
parent 3f24d17ec8
commit 2e720f619c

View File

@@ -3,10 +3,3 @@ 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,
})