This commit is contained in:
Thies Lennart Alff 2023-10-18 20:20:23 +02:00
parent 2538eef889
commit d4e294522e

View file

@ -27,6 +27,13 @@ vim.api.nvim_create_autocmd("FileType", {
end
})
vim.api.nvim_create_autocmd('FileType', {
pattern = 'Makefile',
callback = function ()
vim.opt_local.expandtab = false
end
})
vim.opt.scrolloff = 8
vim.opt.signcolumn = 'yes'
vim.opt.updatetime = 500