2020-09-01 14:44:18 +02:00
|
|
|
;;; constants.el --- Constants for organizing my Elisp -*- lexical-binding: t -*-
|
2020-09-01 11:17:43 +02:00
|
|
|
|
|
|
|
;; Author: William Carroll <wpcarro@gmail.com>
|
|
|
|
;; Version: 0.0.1
|
|
|
|
;; Package-Requires: ((emacs "24"))
|
2018-04-25 19:26:53 +02:00
|
|
|
|
|
|
|
;;; Commentary:
|
2019-10-09 13:13:56 +02:00
|
|
|
;; This file contains constants that are shared across my configuration.
|
2018-04-25 19:26:53 +02:00
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
2020-01-28 00:58:56 +01:00
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
;; Dependencies
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
|
2020-08-31 13:02:04 +02:00
|
|
|
(require 'maybe)
|
2020-01-28 00:58:56 +01:00
|
|
|
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
;; Configuration
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
|
2021-12-24 00:30:31 +01:00
|
|
|
(defconst constants-ci? (maybe-some? (getenv "CI"))
|
2020-09-01 14:44:18 +02:00
|
|
|
"Encoded as t when Emacs is running in CI.")
|
2020-08-31 13:02:04 +02:00
|
|
|
|
2019-10-09 13:13:56 +02:00
|
|
|
(provide 'constants)
|
|
|
|
;;; constants.el ends here
|