60 lines
1.8 KiB
EmacsLisp
60 lines
1.8 KiB
EmacsLisp
;;; init-zone.el --- -*- lexical-binding: t -*-
|
|
;;
|
|
;; Filename: init-zone.el
|
|
;; Description: Initialize Zone
|
|
;; Author: Mingde (Matthew) Zeng
|
|
;; Copyright (C) 2019 Mingde (Matthew) Zeng
|
|
;; Created: Thu Mar 14 17:38:34 2019 (-0400)
|
|
;; Version: 2.0.0
|
|
;; Last-Updated: Fri Sep 13 00:41:28 2019 (-0400)
|
|
;; By: Mingde (Matthew) Zeng
|
|
;; URL: https://github.com/MatthewZMD/.emacs.d
|
|
;; Keywords: M-EMACS .emacs.d zone
|
|
;; Compatibility: emacs-version >= 26.1
|
|
;;
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
;;
|
|
;;; Commentary:
|
|
;;
|
|
;; This initializes zone mode
|
|
;;
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
;;
|
|
;; This program is free software: you can redistribute it and/or modify
|
|
;; it under the terms of the GNU General Public License as published by
|
|
;; the Free Software Foundation, either version 3 of the License, or (at
|
|
;; your option) any later version.
|
|
;;
|
|
;; This program is distributed in the hope that it will be useful, but
|
|
;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
;; General Public License for more details.
|
|
;;
|
|
;; You should have received a copy of the GNU General Public License
|
|
;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
|
|
;;
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
;;
|
|
;;; Code:
|
|
|
|
;; ZonePac
|
|
(use-package zone
|
|
:ensure nil
|
|
:defer 5
|
|
:config
|
|
;; (zone-when-idle 600) ; in seconds
|
|
(defun zone-choose (pgm)
|
|
"Choose a PGM to run for `zone'."
|
|
(interactive
|
|
(list
|
|
(completing-read
|
|
"Program: "
|
|
(mapcar 'symbol-name zone-programs))))
|
|
(let ((zone-programs (list (intern pgm))))
|
|
(zone))))
|
|
;; -ZonePac
|
|
|
|
(provide 'init-zone)
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
;;; init-zone.el ends here
|