feat: configured tab width

This commit is contained in:
Itay Shalev 2026-04-05 05:14:57 +03:00
parent 3aa1fe0553
commit 934559a7f6
1 changed files with 6 additions and 0 deletions

View File

@ -121,6 +121,12 @@ end)
-- Enable break indent -- Enable break indent
vim.o.breakindent = true vim.o.breakindent = true
-- Set tab width
vim.o.tabstop = 4
vim.o.softtabstop = 4
vim.o.shiftwidth = 4
vim.o.expandtab = true
-- Save undo history -- Save undo history
vim.o.undofile = true vim.o.undofile = true