dev: automated commit - 2025-08-27 17:32:41

This commit is contained in:
Mariano Z. 2025-08-27 17:32:41 -03:00
parent 05a716e91b
commit 4c1fd716a2
Signed by: marianozunino
GPG key ID: 4C73BAD25156DACE
11 changed files with 333 additions and 62 deletions

View file

@ -0,0 +1,8 @@
vim.api.nvim_create_autocmd({ "FileType", "BufReadPost", "BufNewFile" }, {
pattern = { "make", "makefile", "Makefile", "*.mk" },
callback = function()
vim.opt_local.expandtab = false
vim.opt_local.shiftwidth = 8
vim.opt_local.tabstop = 8
end,
})