blob: f0204cfa36c89419733df90e3728d94d5e7987cf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
-- Core
require("thesiahxyz.core.options")
require("thesiahxyz.core.keymaps")
require("thesiahxyz.core.autocmds")
require("thesiahxyz.core.lazy")
-- Custom
for _, file in ipairs(vim.fn.readdir(vim.fn.stdpath("config") .. "/lua/thesiahxyz/utils", [[v:val =~ '\.lua$']])) do
require("thesiahxyz.utils." .. file:gsub("%.lua$", ""))
end
-- Plenary
function R(name)
require("plenary.reload").reload_module(name)
end
|