2021-07-08 17:49:51 -07:00
|
|
|
// +build windows
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
2022-07-13 14:18:23 -04:00
|
|
|
import "hilbish/util"
|
2022-07-13 14:10:29 -04:00
|
|
|
|
2021-07-08 17:49:51 -07:00
|
|
|
// String vars that are free to be changed at compile time
|
|
|
|
var (
|
2021-12-13 20:13:17 -04:00
|
|
|
requirePaths = commonRequirePaths + `.. ';'
|
2022-02-25 21:34:30 -04:00
|
|
|
.. hilbish.userDir.config .. '\\Hilbish\\libs\\?\\init.lua;'
|
|
|
|
.. hilbish.userDir.config .. '\\Hilbish\\libs\\?\\?.lua;'
|
|
|
|
.. hilbish.userDir.config .. '\\Hilbish\\libs\\?.lua;'`
|
2022-07-13 14:10:29 -04:00
|
|
|
dataDir = util.ExpandHome("~\\Appdata\\Roaming\\Hilbish") // ~ and \ gonna cry?
|
2022-04-22 23:56:57 -04:00
|
|
|
preloadPath = dataDir + "\\nature\\init.lua"
|
2022-08-16 12:30:39 -04:00
|
|
|
sampleConfPath = dataDir + "\\.hilbishrc.lua" // Path to default/sample config
|
2022-04-19 22:12:05 -04:00
|
|
|
defaultConfDir = ""
|
2021-07-08 17:49:51 -07:00
|
|
|
)
|