A while ago I decided to try out tabs instead of spaces. Bad idea...

It just doesn't make sense, why would you choose to use tabs when you
really get nothing out of them. I've heard arguments that everyone get's
what they want in terms of formatting, but that doesn't really feel
accurate because now I've got code looking messy depending on where it
is you're looking at it on which really sucks. I'm going back to two
space indentation and if a project really wants to use something else
they can setup a formatter and/or .editorconfig file. If you read this
rant, respectfully, what are you doing with your time.
This commit is contained in:
2025-09-24 01:16:40 -04:00
parent baec11b559
commit 43b4369041

View File

@@ -12,6 +12,7 @@ vim.o.cc = "80"
-- indents + tabs
local tabwidth = 2
vim.o.et = true
vim.o.ts = tabwidth
vim.o.sw = tabwidth
vim.o.sts = -1