set default as tabs to 4 spaces (for now)

This commit is contained in:
James Dixon 2022-12-22 15:01:00 -05:00
parent 7c6d1ab4e5
commit 7d298091da

View File

@ -21,9 +21,9 @@ vim.opt.smartcase = true
-- indent
vim.opt.autoindent = true
vim.opt.expandtab = true
vim.opt.shiftwidth = 2
vim.opt.tabstop = 2
vim.opt.softtabstop = 2
vim.opt.shiftwidth = 4
vim.opt.tabstop = 4
vim.opt.softtabstop = 0
-- buffer behaviour
vim.opt.autoread = true