| 123456789101112131415161718192021222324 | if os.getenv "LUNARVIM_RUNTIME_DIR" then  local path_sep = vim.loop.os_uname().version:match "Windows" and "\\" or "/"  vim.opt.rtp:append(os.getenv "LUNARVIM_RUNTIME_DIR" .. path_sep .. "lvim")endrequire("lvim.bootstrap"):init()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()
 |