changelog shortlog graph tags branches changeset file revisions annotate raw help

Mercurial > core / emacs/default.el

revision 28: bc174808bc53
parent 27: 1142c97f92ab
child 29: 920ded613f45
     1.1--- a/emacs/default.el	Thu Nov 02 20:28:36 2023 -0400
     1.2+++ b/emacs/default.el	Thu Nov 02 21:42:52 2023 -0400
     1.3@@ -9,8 +9,9 @@
     1.4 (setq-default make-backup-files nil
     1.5 	      auto-save-list-file-prefix (expand-file-name "auto-save/." user-emacs-directory)
     1.6 	      tramp-auto-save-directory (expand-file-name "auto-save/tramp/" user-emacs-directory)
     1.7+	      dired-free-space nil
     1.8 	      confirm-kill-emacs nil
     1.9-	      confirm-kill-process nil
    1.10+	      confirm-kill-processes nil
    1.11 	      use-short-answers t
    1.12 	      display-time-format "%Y-%m-%d %H:%M"
    1.13 	      ring-bell-function 'ignore
    1.14@@ -45,24 +46,22 @@
    1.15 
    1.16 ;;; Packages
    1.17 (package-initialize)
    1.18+
    1.19 (with-eval-after-load 'package
    1.20-  (mapc (lambda (x) (cl-pushnew x package-selected-packages)) 
    1.21-	'(org-web-tools 
    1.22-	  citeproc 
    1.23-	  all-the-icons all-the-icons-dired all-the-icons-ibuffer
    1.24-	  slime
    1.25-	  rust-mode
    1.26-	  tree-sitter
    1.27-	  tree-sitter-langs)))
    1.28-
    1.29-(package-install-selected-packages t)
    1.30-
    1.31-(setq package-archives 
    1.32-      '(("gnu" . "https://elpa.gnu.org/packages/")
    1.33-	("nongnu" . "https://elpa.nongnu.org/nongnu/")
    1.34-	("melpa" . "https://melpa.org/packages/"))
    1.35-      use-package-always-ensure t
    1.36-      use-package-expand-minimally t)
    1.37+  (setq package-archives 
    1.38+	'(("gnu" . "https://elpa.gnu.org/packages/")
    1.39+	  ("nongnu" . "https://elpa.nongnu.org/nongnu/")
    1.40+	  ("melpa" . "https://melpa.org/packages/"))
    1.41+	use-package-always-ensure t
    1.42+	use-package-expand-minimally t)
    1.43+  (add-packages
    1.44+   org-web-tools 
    1.45+   citeproc 
    1.46+   all-the-icons all-the-icons-dired all-the-icons-ibuffer
    1.47+   slime
    1.48+   rust-mode
    1.49+   tree-sitter-langs)
    1.50+  (package-install-selected-packages t))
    1.51 
    1.52 ;;; VC
    1.53 ;; use rhg, fallback to hg. see hgrc