From 249d3ea04ecbe459ab4059d535fa7d7b5b070244 Mon Sep 17 00:00:00 2001 From: OMGeeky Date: Tue, 5 Aug 2025 21:58:03 +0200 Subject: [PATCH] configure tabstop --- init.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/init.lua b/init.lua index 76ab029..44419a4 100644 --- a/init.lua +++ b/init.lua @@ -141,6 +141,9 @@ vim.o.timeoutlen = 300 vim.o.splitright = true vim.o.splitbelow = true +-- Configure how big tabs are supposed to be +vim.o.tabstop = 4 + -- Sets how neovim will display certain whitespace characters in the editor. -- See `:help 'list'` -- and `:help 'listchars'`