37 lines
580 B
Lua
37 lines
580 B
Lua
local 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",
|
|
"https://github.com/folke/lazy.nvim.git",
|
|
"--branch=stable", -- latest stable release
|
|
lazypath,
|
|
})
|
|
end
|
|
|
|
G.opt.rtp:prepend(lazypath)
|
|
|
|
|
|
if vim.g.vscode then
|
|
require('Plugin.Imchange')
|
|
else
|
|
require('neovim.neovim')
|
|
end
|
|
|
|
require('normal.normal')
|
|
|
|
|
|
-- require('vscode')
|
|
-- require('Plugin.coc')
|
|
|
|
require('Plugin.lualine')
|
|
require('Plugin.Imchange')
|
|
require('Plugin.NERDTree')
|
|
|
|
|
|
|
|
|