From de08fe7ed6c26bd05b2bc5e9246fb27f07dc7464 Mon Sep 17 00:00:00 2001 From: nicholasss Date: Mon, 4 Nov 2024 21:47:37 -0500 Subject: [PATCH] set tab width to 4 --- init.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/init.lua b/init.lua index b55fa812..b46d1fa6 100644 --- a/init.lua +++ b/init.lua @@ -7,6 +7,9 @@ -- --]] +vim.opt.shiftwidth = 4 +vim.opt.tabstop = 4 + -- Set as the leader key -- See `:help mapleader` -- NOTE: Must happen before plugins are loaded (otherwise wrong leader will be used)