diff options
| author | dacctal <dacctalyt@gmail.com> | 2026-04-22 04:31:45 +0000 |
|---|---|---|
| committer | dacctal <dacctalyt@gmail.com> | 2026-04-22 04:31:45 +0000 |
| commit | af89c510b1bf83bf982ccfb1028f26e515de338c (patch) | |
| tree | b411a2b3ec26f2fa670e12ae73cdbca15462766a /config/init.lua | |
| parent | 131a67b1233a1b451348bd6b8533d811d10f4b75 (diff) | |
added default config & fixed headers
Diffstat (limited to 'config/init.lua')
| -rw-r--r-- | config/init.lua | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/config/init.lua b/config/init.lua new file mode 100644 index 0000000..3cbcc06 --- /dev/null +++ b/config/init.lua @@ -0,0 +1,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" |
