From c72ec5d14d53ce247630f55977057ed172128107 Mon Sep 17 00:00:00 2001 From: Karsten Johansson Date: Thu, 12 May 2022 02:10:03 -0400 Subject: [PATCH] Update default.go Added an entry for invoking sbcl --script for .lisp files. --- pkg/config/default.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkg/config/default.go b/pkg/config/default.go index eaacf48..77ed492 100644 --- a/pkg/config/default.go +++ b/pkg/config/default.go @@ -10,6 +10,8 @@ package config func Default() string { return `# Gaze configuration(priority: default < ~/.gaze.yml < ./.gaze.yaml < -f option) commands: +- ext: .lisp + cmd: sbcl --script {{file}} - ext: .go cmd: go run "{{file}}" - ext: .py