mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-03-13 10:15:41 +08:00
15 lines
264 B
Lua
15 lines
264 B
Lua
|
local options = {}
|
||
|
|
||
|
options._opts = {}
|
||
|
|
||
|
|
||
|
function options.init()
|
||
|
options._opts.version = '1.2.0-dev'
|
||
|
-- Change the default indentation of SpaceVim, default is 2.
|
||
|
options._opts.default_indent = 2
|
||
|
options._opts.expand_tab = true
|
||
|
end
|
||
|
|
||
|
|
||
|
return options
|