diff --git a/.hilbishrc.lua b/.hilbishrc.lua index fdd8252..2529be3 100644 --- a/.hilbishrc.lua +++ b/.hilbishrc.lua @@ -1,6 +1,21 @@ -- 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' prompt(ansikit.text('λ {bold}{cyan}'..os.getenv('USER')..' >{magenta}>{cyan}>{reset} ')) + +--hook("tab complete", function ())