From c04a27b48cb7ede1f339cf01f04c46abdce60f19 Mon Sep 17 00:00:00 2001 From: TorchedSammy <38820196+TorchedSammy@users.noreply.github.com> Date: Sun, 21 Mar 2021 03:05:39 -0400 Subject: [PATCH] chore: order ansikit and make import global --- .hilbishrc.lua | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.hilbishrc.lua b/.hilbishrc.lua index 738bb32..5afb593 100644 --- a/.hilbishrc.lua +++ b/.hilbishrc.lua @@ -3,6 +3,7 @@ package.path = package.path .. ';./libs/?/init.lua;/usr/share/hilbish/libs/?/ini fs = require 'fs' commander = require 'commander' +ansikit = require 'ansikit' commander.register("cd", function (path) if path then @@ -10,8 +11,6 @@ commander.register("cd", function (path) end end) -local ansikit = require 'ansikit' - prompt(ansikit.text('λ {bold}{cyan}'..os.getenv('USER')..' >{magenta}>{cyan}>{reset} ')) --hook("tab complete", function ())