This commit is contained in:
tavo 2025-01-07 13:15:51 -06:00
parent c01eb77972
commit f9019bc050
Signed by: tavo
GPG key ID: D490F27B624CECB0
2 changed files with 2 additions and 0 deletions

View file

@ -3,6 +3,7 @@ vim.api.nvim_create_autocmd('FileType', {
callback = function() callback = function()
vim.opt.colorcolumn = "81" vim.opt.colorcolumn = "81"
vim.opt.shiftwidth = 8 vim.opt.shiftwidth = 8
vim.opt.tabstop = 8
vim.opt.expandtab = false vim.opt.expandtab = false
end end
}) })

View file

@ -3,6 +3,7 @@ vim.api.nvim_create_autocmd('FileType', {
callback = function() callback = function()
vim.opt.colorcolumn = "81" vim.opt.colorcolumn = "81"
vim.opt.shiftwidth = 8 vim.opt.shiftwidth = 8
vim.opt.tabstop = 8
vim.opt.expandtab = false vim.opt.expandtab = false
end end
}) })