nvim/lua/core/settings.lua

7 lines
186 B
Lua

-- how many spaces large a TAB character is
vim.o.tabstop=2
-- when indenting with '>', use space width
vim.o.shiftwidth=2
-- insert spaces instead of TAB character
vim.o.expandtab=true