1
0
Fork 0

refactor: Disabled expandtab so we get real tabs instead of spaces.

This commit is contained in:
Tristan Russell 2026-05-12 21:54:21 -04:00
parent 25c7e1fe04
commit e002f9f9cf
Signed by: tristanr
GPG Key ID: 4495C92911DF04CA
1 changed files with 1 additions and 1 deletions

View File

@ -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