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