This repository has been archived on 2022-11-18. You can view files and clone it, but cannot push or open issues or pull requests.
emacs/modules/em-workflow.el

44 lines
861 B
EmacsLisp
Raw Normal View History

2018-07-07 22:34:00 +02:00
;;; em-workflow.el --- Module file for setting up workflows.
;;
;; Copyright (C) 2017 Wojciech Kozlowski
;;
2018-02-04 18:18:18 +01:00
;; Author: Wojciech Kozlowski <wk@wojciechkozlowski.eu>
;; Created: 25 Aug 2017
;;
;; This file is not part of GNU Emacs.
;;
;;; Commentary:
;;
;; This module sets up configuration for a workflow and is expected to be
;; loaded last.
;;
;;; License: GPLv3
;;; Required packages:
2018-07-07 22:34:00 +02:00
;;; Code:
(defvar emodule/em-workflow-packages
2018-07-08 15:03:10 +02:00
'(perspective)
2018-07-08 15:03:10 +02:00
)
;;; Configuration:
2018-07-07 22:34:00 +02:00
(defun emodule/em-workflow-init ()
"Initialise the `em-workflow' module."
;; --------------------------------------------------------------------------
2018-07-08 15:03:10 +02:00
;; Enable `perspective'.
;; --------------------------------------------------------------------------
2018-07-08 15:03:10 +02:00
(use-package perspective
:config
(persp-mode))
)
2018-07-07 22:34:00 +02:00
(provide 'em-workflow)
;;; em-workflow.el ends here