mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-19 09:43:42 +08:00
18 lines
438 B
Lua
Vendored
18 lines
438 B
Lua
Vendored
--=============================================================================
|
|
-- config.lua
|
|
-- Copyright 2025 Eric Wong
|
|
-- Author: Eric Wong < wsdjeg@outlook.com >
|
|
-- License: GPLv3
|
|
--=============================================================================
|
|
|
|
|
|
local M = {}
|
|
|
|
M.bundle_dir = vim.fn.stdpath('data') .. '/bundle_dir'
|
|
|
|
function M.setup(opt)
|
|
M.bundle_dir = opt.bundle_dir or M.bundle_dir
|
|
end
|
|
|
|
return M
|