mirror of
https://github.com/marianozunino/nvim.git
synced 2025-10-28 11:20:41 -03:00
dev: automated commit - 2025-08-27 17:32:41
This commit is contained in:
parent
05a716e91b
commit
4c1fd716a2
11 changed files with 333 additions and 62 deletions
8
plugin/after/makefile.lua
Normal file
8
plugin/after/makefile.lua
Normal 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,
|
||||
})
|
||||
Loading…
Add table
Add a link
Reference in a new issue