From a33b196acaa4ddb7bb201ce88017bb28f73b7914 Mon Sep 17 00:00:00 2001 From: hyzen Date: Mon, 29 Jun 2026 14:17:50 +0530 Subject: [PATCH] Fix: comment on tabs over spaces --- init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.lua b/init.lua index 6063bd2..e2ee19a 100644 --- a/init.lua +++ b/init.lua @@ -325,7 +325,7 @@ vim.o.completeopt = 'menuone,noselect' vim.o.termguicolors = true -- Tabs and indentation -vim.o.expandtab = false -- use spaces instead of tabs +vim.o.expandtab = false -- use tabs instead of spaces vim.o.shiftwidth = 4 -- number of spaces for autoindent vim.o.softtabstop = 0 -- number of spaces per Tab in insert mode vim.o.tabstop = 4 -- number of spaces a Tab counts for