5 lines
157 B
Lua
5 lines
157 B
Lua
-- SPACES AND TABS
|
|
|
|
vim.opt.expandtab = true -- expand tabs to spaces
|
|
vim.opt.shiftwidth = 4
|
|
vim.opt.softtabstop = 4 -- number of spaces in tab when editing
|