This commit is contained in:
2024-11-25 17:14:02 +00:00
parent c4afa549c5
commit 156cba158a

View File

@ -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 --