From 43b4369041130d4fa6bf5878435b9ca3d46ceab4 Mon Sep 17 00:00:00 2001 From: Squibid Date: Wed, 24 Sep 2025 01:16:40 -0400 Subject: [PATCH] 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. --- lua/conf/opts.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/lua/conf/opts.lua b/lua/conf/opts.lua index c840783..ce27b80 100644 --- a/lua/conf/opts.lua +++ b/lua/conf/opts.lua @@ -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