Properly set shiftwidth to fix the weird broken tab behavior

This commit is contained in:
2025-04-29 11:25:30 -07:00
parent ea3be3917f
commit 12ef3f83ec

View File

@ -12,6 +12,7 @@ local opt = vim.opt
opt.expandtab = false
opt.cursorline = true
opt.tabstop = 3
opt.shiftwidth = 3
opt.wrap = false
opt.number = true
opt.spell = true