mirror of
https://github.com/lliding/ld-emacs.git
synced 2025-10-13 05:23:05 +00:00
20 lines
313 B
EmacsLisp
20 lines
313 B
EmacsLisp
;; -*- coding: utf-8; -*-
|
|
;;; Require:
|
|
(require 'undo-tree)
|
|
|
|
;;; Code:
|
|
(global-undo-tree-mode)
|
|
|
|
;; ;; --- undo-tree
|
|
;; (lazy-load-local-keys
|
|
;; '(
|
|
;; ("C-/" . undo-tree-undo)
|
|
;; ("C-?" . undo-tree-redo)
|
|
;; )
|
|
;; undo-tree-map
|
|
;; "undo-tree")
|
|
|
|
(provide 'init-undo-tree)
|
|
|
|
;;; init-undo-tree.el ends here
|