my-nvim-config/vps/init.lua
SinTan1729 f8cbef6912
fix: Order of loading configs
This fixes the issue where lazy.nvim will load plugins from the current
directory instead of the proper folder
2024-10-02 01:27:08 -05:00

10 lines
247 B
Lua

-- Load the different config files
package.path = vim.fn.stdpath("config") .. "/config/?.lua" .. ';' .. package.path
-- Load global configs
require("globals")
-- Load plugins using lazy.nvim
require("plugins")
-- Load keymaps
require("keymaps")