1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-24 06:40:05 +08:00
SpaceVim/lua/spacevim/opt.lua
2019-07-18 22:36:59 +08:00

15 lines
260 B
Lua

local options = {}
options._opts = {}
function options.init()
options._opts.version = '1.2.0'
-- Change the default indentation of SpaceVim, default is 2.
options._opts.default_indent = 2
options._opts.expand_tab = true
end
return options