mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
16 lines
295 B
EmacsLisp
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
|