blob: 3cbcc063c0831ff013f3362d100900c509f3b50f (
plain)
1
2
3
4
5
6
7
8
9
|
-- initializing the path for configuration
-- DO NOT CHANGE
home_dir = os.getenv("HOME")
package.path = package.path .. ";" .. home_dir .. "/.config/pkgit/?.lua"
-- require other lua scripts
require "build_systems"
require "repositories"
require "install_directories"
|