From e002f9f9cf02b3206466f41cfc40701f17690b40 Mon Sep 17 00:00:00 2001 From: Tristan Russell Date: Tue, 12 May 2026 21:54:21 -0400 Subject: [PATCH] refactor: Disabled expandtab so we get real tabs instead of spaces. --- lua/truss/set.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/truss/set.lua b/lua/truss/set.lua index 0baf645..5afc011 100644 --- a/lua/truss/set.lua +++ b/lua/truss/set.lua @@ -23,7 +23,7 @@ vim.opt.listchars = { -- Characters to use for whitespace vim.opt.tabstop = 4 -- Visual width of a tab vim.opt.softtabstop = 4 -- Insert mode tab size vim.opt.shiftwidth = 4 -- Shift / autoindent size -vim.opt.expandtab = true -- Tabs to spaces +vim.opt.expandtab = false -- Tabs to spaces NO NO NO vim.opt.smartindent = true -- Wrapping