mirror of https://github.com/Hilbis/Hilbish
"feat: cd builtin at lua config"
parent
55943e3c16
commit
93ce2a9cef
|
@ -1,6 +1,21 @@
|
||||||
-- Default Hilbish config
|
-- Default Hilbish config
|
||||||
package.path = package.path .. ';./libs/?/init.lua'
|
package.path = package.path .. ';./libs/?/init.lua' .. ';/home/sammy/.luarocks/lib/lua/5.4/?.so'
|
||||||
|
|
||||||
|
fs = require 'fs'
|
||||||
|
commander = require 'commander'
|
||||||
|
|
||||||
|
commander.register("cd", function (path)
|
||||||
|
fs.cd(path[1])
|
||||||
|
end)
|
||||||
|
--[[commander = {
|
||||||
|
__commands = {}
|
||||||
|
}
|
||||||
|
commander.__commands.ayo = function ()
|
||||||
|
print("ayo?")
|
||||||
|
end]]--
|
||||||
|
|
||||||
local ansikit = require 'ansikit'
|
local ansikit = require 'ansikit'
|
||||||
|
|
||||||
prompt(ansikit.text('λ {bold}{cyan}'..os.getenv('USER')..' >{magenta}>{cyan}>{reset} '))
|
prompt(ansikit.text('λ {bold}{cyan}'..os.getenv('USER')..' >{magenta}>{cyan}>{reset} '))
|
||||||
|
|
||||||
|
--hook("tab complete", function ())
|
||||||
|
|
Loading…
Reference in New Issue