adjust tabstop and shiftwidth

This commit is contained in:
Gered 2024-09-04 23:55:52 -04:00
parent aaca74819e
commit 2c280e967e

View file

@ -53,6 +53,10 @@ vim.opt.splitbelow = true
vim.opt.list = true
vim.opt.listchars = { tab = '» ', trail = '·', nbsp = '' }
-- Tabs
vim.opt.shiftwidth = 4
vim.opt.tabstop = 4
-- Preview substitutions live, as you type!
vim.opt.inccommand = 'split'