mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
21 lines
527 B
EmacsLisp
21 lines
527 B
EmacsLisp
;;; siren-core-keybinds.el --- jimeh's Emacs Siren: Core keybinds support -*- lexical-binding: nil; -*-
|
|
|
|
;;; Commentary:
|
|
|
|
;; Install and configure packages for working with and managing keybinds.
|
|
|
|
;;; Code:
|
|
|
|
(use-package general
|
|
:ensure (:wait t)
|
|
:demand t
|
|
|
|
:preface
|
|
(defun siren-general-define-key (&rest args)
|
|
"Wrap `general-define-key' in `with-eval-after-load'."
|
|
(with-eval-after-load 'general
|
|
(apply #'general-define-key args))))
|
|
|
|
(provide 'siren-core-keybinds)
|
|
;;; siren-core-keybinds.el ends here
|