nvim: Fix tabbing

This commit is contained in:
Peter Cai 2024-04-22 21:27:51 -04:00
parent cafe6a98a2
commit bd10514742

View file

@ -4,3 +4,7 @@
vim.opt.relativenumber = false
-- Autoformatting can break stuff; turn it off.
vim.g.autoformat = false
-- sane (un-)tabbing unless overridden
vim.opt.tabstop = 4
vim.opt.shiftwidth = 4
vim.opt.expandtab = true