From 2bbca46cd989048111c17552590a0ba1ed33b476 Mon Sep 17 00:00:00 2001 From: dlond Date: Tue, 20 May 2025 19:41:06 +1200 Subject: [PATCH] trying to fix auto indenting on some files part 2 --- lua/custom/options.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lua/custom/options.lua b/lua/custom/options.lua index 6401b8b9..6bb32e88 100644 --- a/lua/custom/options.lua +++ b/lua/custom/options.lua @@ -5,7 +5,8 @@ vim.g.have_nerd_font = true -- Indentation settings vim.o.expandtab = true --- vim.o.smartindent = true +vim.o.smartindent = true +vim.o.autoindent = true vim.o.tabstop = 4 vim.o.shiftwidth = 4