mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
Previously I've always kinda "hacked" things to get C-z prefixes for various workspace-related packages to work. Now it's finally setup correctly with a custom siren-workspace-map keymap bound to C-z, and relevant packages adding keybindings to it.
20 lines
415 B
EmacsLisp
20 lines
415 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:
|
|
|
|
(use-package siren-workspace-map
|
|
:straight (:type built-in)
|
|
:no-require t
|
|
|
|
:bind
|
|
(:prefix-map siren-workspace-map
|
|
:prefix "C-z"))
|
|
|
|
(provide 'siren-workspace-map)
|
|
;;; siren-workspace-map.el ends here
|