Files
.emacs.d/modules/workspaces/siren-workspace-map.el
Jim Myhrberg a8618938bf feat(core): use general.el for keybind definitions nearly everywhere
Primarily this replaces :bind with :general in all use-package calls.
2022-03-14 21:16:15 +00:00

15 lines
355 B
EmacsLisp

;;; siren-workspace-map.el --- jimeh's Emacs Siren: workspaces-map setup.
;;; Commentary:
;; Setup of siren-workspace-map which other workspace modules can add
;; keybindings to.
;;; Code:
(define-prefix-command 'siren-workspace-map)
(general-define-key "C-z" 'siren-workspace-map)
(provide 'siren-workspace-map)
;;; siren-workspace-map.el ends here