| 1234567891011121314151617181920212223242526 | local init_path = debug.getinfo(1, "S").source:sub(2)local base_dir = init_path:match("(.*[/\\])"):sub(1, -2)if not vim.tbl_contains(vim.opt.rtp:get(), base_dir) then  vim.opt.rtp:append(base_dir)endrequire("lvim.bootstrap"):init(base_dir)require("lvim.config"):load()local plugins = require "lvim.plugins"require("lvim.plugin-loader"):load { plugins, lvim.plugins }local Log = require "lvim.core.log"Log:debug "Starting LunarVim"vim.g.colors_name = lvim.colorscheme -- Colorscheme must get called after plugins are loaded or it will break new installs.vim.cmd("colorscheme " .. lvim.colorscheme)local commands = require "lvim.core.commands"commands.load(commands.defaults)require("lvim.keymappings").setup()require("lvim.lsp").setup()
 |