10 lines
156 B
Lua
Raw Normal View History

2023-07-17 10:01:07 +00:00
local opt = vim.opt
-- Indenting
opt.expandtab = false
opt.shiftwidth = 4
opt.tabstop = 4
opt.softtabstop = 4
opt.autoindent = true
opt.smartindent = true