1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-19 18:53:44 +08:00
SpaceVim/bundle/nvim-plug/test/init.lua
2025-02-04 23:27:02 +08:00

32 lines
669 B
Lua
Vendored

--=============================================================================
-- init.lua
-- Copyright 2025 Eric Wong
-- Author: Eric Wong < wsdjeg@outlook.com >
-- License: GPLv3
--=============================================================================
vim.opt.runtimepath:append('.')
vim.opt.runtimepath:append('~/.SpaceVim')
require('plug').setup({
bundle_dir = 'D:/bundle_dir',
})
require("plug").add({
{
"wsdjeg/scrollbar.vim",
events = { "VimEnter" },
config = function()
end
},
{
"wsdjeg/flygrep.nvim",
cmds = { "FlyGrep" },
config = function()
require('flygrep').setup()
end
},
})