This commit is contained in:
Zelong Kuang
2025-12-23 08:23:35 +11:00
parent 5dd3599dbc
commit c13698174a
3 changed files with 12 additions and 1 deletions

View File

@@ -106,7 +106,7 @@ unreadable. Returns the names of envvars that were changed."
(setq-default cursor-type 'bar)
(setq make-backup-files nil)
(setq use-short-answers t)
(setq frame-title-format "Emacs: %b")
(setq frame-title-format "")
(setq custom-safe-themes t)
(pcase system-type ('darwin (setq insert-directory-program "gls")))

View File

@@ -80,4 +80,13 @@
:bind (([remap move-beginning-of-line] . mwim-beginning)
([remap move-end-of-line] . mwim-end)))
(use-package avy
:bind
(("C-'" . avy-goto-char-timer)))
;; Treat undo history as a tree
(use-package vundo
:bind ("C-x u" . vundo)
:config (setq vundo-glyph-alist vundo-unicode-symbols))
(provide 'init-edit)