From 3814931d8321eca8e7c6f73b5405ae9227b07fce Mon Sep 17 00:00:00 2001 From: Carlos Hurtado <52082645+carlosahs@users.noreply.github.com> Date: Wed, 1 May 2024 12:52:41 -0600 Subject: [PATCH] feat: enable expand tab --- init.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/init.lua b/init.lua index 29d665ef..5c635b2b 100644 --- a/init.lua +++ b/init.lua @@ -122,6 +122,9 @@ vim.opt.clipboard = 'unnamedplus' -- Enable break indent vim.opt.breakindent = true +-- Enable expand tab +vim.opt.expandtab = true + -- Save undo history vim.opt.undofile = true