mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
Majorly re-organize modules
- Split large modules into smaller parts (e.g. siren-text-manipulation) - Organize modules into high level groups: - completion - core - editor - languages - linting - misc - navigation - projects - spelling - text-editing - version-control - windows - workspaces
This commit is contained in:
23
modules/misc/siren-zone.el
Normal file
23
modules/misc/siren-zone.el
Normal file
@@ -0,0 +1,23 @@
|
||||
;;; siren-zone.el --- jimeh's Emacs Siren: zone configuration.
|
||||
|
||||
;;; Commentary:
|
||||
|
||||
;; Basic configuration for zone.
|
||||
|
||||
;;; Code:
|
||||
|
||||
(require 'zone)
|
||||
(zone-when-idle 120)
|
||||
|
||||
(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)))
|
||||
|
||||
(provide 'siren-zone)
|
||||
;;; siren-zone.el ends here
|
||||
Reference in New Issue
Block a user