From 12ef3f83ec341cc11c1cbb1dca525084f32e3c32 Mon Sep 17 00:00:00 2001 From: Zakarya Date: Tue, 29 Apr 2025 11:25:30 -0700 Subject: [PATCH] Properly set shiftwidth to fix the weird broken tab behavior --- init.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/init.lua b/init.lua index 0db0164..f39f6f2 100644 --- a/init.lua +++ b/init.lua @@ -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