mirror of
https://github.com/marianozunino/nvim.git
synced 2025-10-28 11:20:41 -03:00
8 lines
264 B
Lua
8 lines
264 B
Lua
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,
|
|
})
|