From 447518a73ad819fe60e25a2398278e201d367b30 Mon Sep 17 00:00:00 2001 From: Louis-Guillaume Gagnon Date: Thu, 5 Sep 2013 19:11:08 -0400 Subject: [PATCH] Create a configuration file (included at build-time) --- Config.hs | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 Config.hs diff --git a/Config.hs b/Config.hs new file mode 100644 index 0000000..bb91569 --- /dev/null +++ b/Config.hs @@ -0,0 +1,12 @@ +{- Config.h -- configuration file for hddb -} + +module Config ( + defaultViewer +) where + +{- + this is the default viewer that is launched by + the 'view' command +-} +defaultViewer :: String +defaultViewer = "vim" -- 2.11.4.GIT