From 156cba158a3f175c114b5401fdcc0ccdd5446d58 Mon Sep 17 00:00:00 2001 From: John Costa Date: Mon, 25 Nov 2024 17:14:02 +0000 Subject: [PATCH] tabs --- nvim/init.lua | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/nvim/init.lua b/nvim/init.lua index 4f7e2db3..b469aa69 100644 --- a/nvim/init.lua +++ b/nvim/init.lua @@ -25,6 +25,13 @@ vim.opt.signcolumn = "yes" vim.opt.number = true vim.opt.relativenumber = true +-- Tabs + +vim.o.tabstop = 4 -- A TAB character looks like 4 spaces +vim.o.expandtab = true -- Pressing the TAB key will insert spaces instead of a TAB character +vim.o.softtabstop = 4 -- Number of spaces inserted instead of a TAB character +vim.o.shiftwidth = 4 -- Number of spaces inserted when indenting + -- Modules -- -- Lazy = Package Manager --