This fixes the issue where lazy.nvim will load plugins from the current directory instead of the proper folder
10 lines
247 B
Lua
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")
|
|
|