mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
- Split large modules into smaller parts (e.g. siren-text-manipulation) - Organize modules into high level groups: - completion - core - editor - languages - linting - misc - navigation - projects - spelling - text-editing - version-control - windows - workspaces
15 lines
301 B
EmacsLisp
15 lines
301 B
EmacsLisp
;;; siren-goto-chg.el --- jimeh's Emacs Siren: goto-chg configuration.
|
|
|
|
;;; Commentary:
|
|
|
|
;; Basic configuration for goto-chg.
|
|
|
|
;;; Code:
|
|
|
|
(use-package goto-chg
|
|
:bind (("C-." . goto-last-change)
|
|
("C-," . goto-last-change-reverse)))
|
|
|
|
(provide 'siren-goto-chg)
|
|
;;; siren-goto-chg.el ends here
|