From 11f193b394656688c6dca0ffd2586961884599b0 Mon Sep 17 00:00:00 2001 From: TorchedSammy <38820196+TorchedSammy@users.noreply.github.com> Date: Mon, 21 Feb 2022 21:14:49 -0400 Subject: [PATCH] fix: make default config work with breaking changes --- .hilbishrc.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.hilbishrc.lua b/.hilbishrc.lua index ec3f2e0..2576625 100644 --- a/.hilbishrc.lua +++ b/.hilbishrc.lua @@ -1,9 +1,9 @@ -- Default Hilbish config -lunacolors = require 'lunacolors' -bait = require 'bait' +local lunacolors = require 'lunacolors' +local bait = require 'bait' function doPrompt(fail) - prompt(lunacolors.format( + hilbish.prompt(lunacolors.format( '{blue}%u {cyan}%d ' .. (fail and '{red}' or '{green}') .. '∆ ' )) end