1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-22 02:43:45 +08:00
SpaceVim/bundle/nvim-plug/lua/plug/config.lua

18 lines
438 B
Lua
Raw Normal View History

--=============================================================================
-- 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