Hilbish/vars_windows.go

18 lines
574 B
Go
Raw Permalink Normal View History

2021-07-09 00:49:51 +00:00
// +build windows
package main
import "hilbish/util"
2021-07-09 00:49:51 +00:00
// String vars that are free to be changed at compile time
var (
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;'`
dataDir = util.ExpandHome("~\\Appdata\\Roaming\\Hilbish") // ~ and \ gonna cry?
preloadPath = dataDir + "\\nature\\init.lua"
sampleConfPath = dataDir + "\\.hilbishrc.lua" // Path to default/sample config
defaultConfDir = ""
2021-07-09 00:49:51 +00:00
)