update
This commit is contained in:
parent
eee82fd12a
commit
f13050bbff
32
init.lua
32
init.lua
@ -1,5 +1,9 @@
|
|||||||
G = require('G')
|
G = require('G')
|
||||||
|
|
||||||
|
|
||||||
|
if G.g.vscode then
|
||||||
|
require('vscode.vscode')
|
||||||
|
else
|
||||||
local lazypath = G.fn.stdpath("data") .. "/lazy/lazy.nvim"
|
local lazypath = G.fn.stdpath("data") .. "/lazy/lazy.nvim"
|
||||||
if not G.loop.fs_stat(lazypath) then
|
if not G.loop.fs_stat(lazypath) then
|
||||||
|
|
||||||
@ -22,27 +26,17 @@ if not G.loop.fs_stat(lazypath) then
|
|||||||
})
|
})
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
||||||
G.opt.rtp:prepend(lazypath)
|
G.opt.rtp:prepend(lazypath)
|
||||||
|
|
||||||
local normalplugs = require('normal.plug')
|
require("lazy").setup({
|
||||||
local vscodeplugs = require('vscode.plug')
|
require('normal.plug'),
|
||||||
local neovimplugs = require('neovim.plug')
|
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')
|
require('normal.normal')
|
||||||
|
require('neovim.neovim')
|
||||||
|
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -0,0 +1 @@
|
|||||||
|
require("vscode.keymap")
|
Loading…
Reference in New Issue
Block a user