nvim/init.lua
2023-10-09 17:01:31 +08:00

47 lines
831 B
Lua

G = require('G')
local lazypath = G.fn.stdpath("data") .. "/lazy/lazy.nvim"
if not G.loop.fs_stat(lazypath) then
G.fn.system({
"git",
"clone",
"--filter=blob:none",
"http://git.qqnewbie.top/newbieQQ/lazy.nvim.git",
-- latest stable release
"--branch=stable",
lazypath,
})
G.fn.system({
"git",
"config",
"--global",
"credential.helper",
"store",
})
end
G.opt.rtp:prepend(lazypath)
local normalplugs = require('normal.plug')
local vscodeplugs = require('vscode.plug')
local neovimplugs = require('neovim.plug')
if G.g.vscode then
normalplugs = {vscodeplugs, normalplugs}
else
normalplugs = {neovimplugs, normalplugs}
end
require("lazy").setup(normalplugs)
if G.g.vscode then
require('vscode.vscode')
else
require('neovim.neovim')
end
require('normal.normal')