Files
.emacs.d/modules/text-editing/siren-goto-chg.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

16 lines
295 B
EmacsLisp

;;; siren-goto-chg.el --- jimeh's Emacs Siren: goto-chg configuration.
;;; Commentary:
;; Basic configuration for goto-chg.
;;; Code:
(use-package goto-chg
:general
("C-." 'goto-last-change)
("C-," 'goto-last-change-reverse))
(provide 'siren-goto-chg)
;;; siren-goto-chg.el ends here