add make filetype
This commit is contained in:
@@ -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,
|
||||||
|
})
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user