From f6aaf85cca1038e102d502204dcf105f3bae3651 Mon Sep 17 00:00:00 2001 From: TorchedSammy <38820196+TorchedSammy@users.noreply.github.com> Date: Sat, 27 Nov 2021 22:51:32 -0500 Subject: [PATCH] fix: make minimal config actually minimal and not require lunacolors --- lua.go | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/lua.go b/lua.go index 9708338..020c171 100644 --- a/lua.go +++ b/lua.go @@ -17,12 +17,7 @@ import ( "layeh.com/gopher-luar" ) -var minimalconf = ` -lunacolors = require 'lunacolors' -prompt(lunacolors.format( - '{blue}%u {cyan}%d {green}∆{reset} ' -)) -` +var minimalconf = `prompt '& '` func LuaInit() { l = lua.NewState()