20 lines
412 B
Lua
20 lines
412 B
Lua
require "core"
|
|
|
|
pcall(require, 'custom')
|
|
|
|
local lazypath = vim.fn.stdpath "data" .. "/lazy/lazy.nvim"
|
|
|
|
-- bootstrap lazy.nvim!
|
|
if not vim.loop.fs_stat(lazypath) then
|
|
require("core.bootstrap").gen_chadrc_template()
|
|
require("core.bootstrap").lazy(lazypath)
|
|
end
|
|
|
|
dofile(vim.g.base46_cache .. "defaults")
|
|
vim.opt.rtp:prepend(lazypath)
|
|
require "plugins"
|
|
|
|
vim.schedule(function()
|
|
require "core.mappings"
|
|
end, 0)
|