mirror of
https://github.com/Hilbis/Hilbish
synced 2025-05-14 00:03:22 +00:00
this commit has 2 changes: - preload.lua is now init.lua in the prelude folder. the reason for the name change of preload to prelude is to make update/ overwrite not hell - the guide command has been added which is a simple step through getting started type of thing for new users
15 lines
513 B
Go
15 lines
513 B
Go
// +build windows
|
|
|
|
package main
|
|
|
|
// String vars that are free to be changed at compile time
|
|
var (
|
|
requirePaths = commonRequirePaths + `.. ';'
|
|
.. hilbish.userDir.config .. '\\Hilbish\\libs\\?\\init.lua;'
|
|
.. hilbish.userDir.config .. '\\Hilbish\\libs\\?\\?.lua;'
|
|
.. hilbish.userDir.config .. '\\Hilbish\\libs\\?.lua;'`
|
|
dataDir = "~\\Appdata\\Roaming\\Hilbish" // ~ and \ gonna cry?
|
|
preloadPath = dataDir + "\\prelude\\init.lua"
|
|
sampleConfPath = dataDir + "\\hilbishrc.lua" // Path to default/sample config
|
|
)
|