1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-24 10:40:04 +08:00
SpaceVim/lua/spacevim/opt.lua

15 lines
260 B
Lua
Raw Normal View History

2019-05-31 21:45:09 +08:00
local options = {}
options._opts = {}
function options.init()
2019-07-18 22:36:59 +08:00
options._opts.version = '1.2.0'
2019-05-31 21:45:09 +08:00
-- Change the default indentation of SpaceVim, default is 2.
options._opts.default_indent = 2
options._opts.expand_tab = true
end
return options