set tabstop to reasonable

This commit is contained in:
Noa Aarts 2024-03-01 13:15:04 +01:00
parent bf8a22480d
commit 5902c4241b

View file

@ -137,6 +137,10 @@ vim.opt.splitbelow = true
vim.opt.list = true vim.opt.list = true
vim.opt.listchars = { tab = "» ", trail = "·", nbsp = "" } vim.opt.listchars = { tab = "» ", trail = "·", nbsp = "" }
-- make tabs a reasonable width
vim.opt.tabstop = 4
vim.opt.softtabstop = 4
-- Preview substitutions live, as you type! -- Preview substitutions live, as you type!
vim.opt.inccommand = "split" vim.opt.inccommand = "split"