mirror of https://github.com/Hilbis/Hilbish
Compare commits
No commits in common. "2b5e65e47a1b0a00b66f3166b8a0219c27173917" and "805eefcd17879fa4ff3b121b86b0ed8880e1673e" have entirely different histories.
2b5e65e47a
...
805eefcd17
11
vars.go
11
vars.go
|
@ -2,16 +2,13 @@ package main
|
||||||
|
|
||||||
// String vars that are free to be changed at compile time
|
// String vars that are free to be changed at compile time
|
||||||
var (
|
var (
|
||||||
version = "v0.5.1"
|
version = "v0.5.0"
|
||||||
requirePaths = `';./libs/?/init.lua;./?/init.lua;./?/?.lua'
|
requirePaths = `';./libs/?/init.lua;./?/init.lua;./?/?.lua'
|
||||||
.. ';/usr/share/hilbish/libs/?/init.lua;'
|
.. ';/usr/share/hilbish/libs/?/init.lua;'
|
||||||
.. ';/usr/share/hilbish/libs/?/?.lua;'
|
.. ';/usr/share/hilbish/libs/?/?.lua;'
|
||||||
.. hilbish.home .. '/.local/share/hilbish/libs/?/init.lua;'
|
.. os.getenv 'HOME' .. '/.local/share/hilbish/libs/?/init.lua;'
|
||||||
.. hilbish.home .. '/.local/share/hilbish/libs/?/?.lua;'
|
.. os.getenv 'HOME' .. '/.local/share/hilbish/libs/?/?.lua;'
|
||||||
.. hilbish.home .. '/.local/share/hilbish/libs/?.lua'
|
.. os.getenv 'HOME' .. '/.local/share/hilbish/libs/?.lua'`
|
||||||
.. hilbish.home .. '/.config/hilbish/?/init.lua'
|
|
||||||
.. hilbish.home .. '/.config/hilbish/?/?.lua'
|
|
||||||
.. hilbish.home .. '/.config/hilbish/?.lua'`
|
|
||||||
preloadPath = "/usr/share/hilbish/preload.lua"
|
preloadPath = "/usr/share/hilbish/preload.lua"
|
||||||
defaultConfDir = "" // ~ will be substituted for home, path for user's default config
|
defaultConfDir = "" // ~ will be substituted for home, path for user's default config
|
||||||
sampleConfPath = "/usr/share/hilbish/.hilbishrc.lua" // Path to default/sample config
|
sampleConfPath = "/usr/share/hilbish/.hilbishrc.lua" // Path to default/sample config
|
||||||
|
|
Loading…
Reference in New Issue