mirror of
https://github.com/Hilbis/Hilbish
synced 2025-03-13 18:00:41 +00:00
prelude is no longer. it is now nature. organized the single file prelude into multiple source files and renamed it to nature. this is coming after thought that it can turn into a general hilbish lua core, with user facing modules as well. this introduces the `nature.dirs` module, to interact and get recently changed to directories and last/old cwd.
16 lines
533 B
Go
16 lines
533 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 + "\\nature\\init.lua"
|
|
sampleConfPath = dataDir + "\\hilbishrc.lua" // Path to default/sample config
|
|
defaultConfDir = ""
|
|
)
|