mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
- 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
15 lines
283 B
EmacsLisp
15 lines
283 B
EmacsLisp
;;; siren-workgroups2.el --- jimeh's Emacs Siren: workgroups2 configuration.
|
|
|
|
;;; Commentary:
|
|
|
|
;; Basic configuration for workgroups2.
|
|
|
|
;;; Code:
|
|
|
|
(use-package workgroups2
|
|
:config
|
|
(setq wg-prefix-key (kbd "C-z")))
|
|
|
|
(provide 'siren-workgroups2)
|
|
;;; siren-workgroups2.el ends here
|