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/workflow.el

39 lines
804 B
EmacsLisp
Raw Normal View History

;;; 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:
2017-09-02 14:45:42 +02:00
(setq emodule/workflow-packages
'(workgroups2)
)
;;; Configuration:
2017-09-02 14:45:42 +02:00
(defun emodule/workflow-init ()
;; --------------------------------------------------------------------------
;; Enable `workgroups'.
;; --------------------------------------------------------------------------
(use-package workgroups2
:init
(workgroups-mode 1)
2018-02-11 22:35:08 +01:00
(wg-switch-to-workgroup "First workgroup"))
)