Skip to content

Commit

Permalink
Add TODOs to review no-litter and straight-use-package
Browse files Browse the repository at this point in the history
in the future.
  • Loading branch information
adityaathalye committed Feb 26, 2024
1 parent 01e24c8 commit ad8d50f
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion init.el
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,10 @@
;; the repo without potentially overwriting transient state files of the
;; daily driver .emacs.d.

;; TODO: Evaluate the `no-littering' package.
;; It aims to "Help keeping ~/.config/emacs clean.".
;; cf. https://github.com/emacscollective/no-littering

(defvar adi/dotemacs-dir
(file-name-directory (or load-file-name (buffer-file-name)))
"The dotemacs' root. Normally it should be ~/.emacs.d.")
Expand Down Expand Up @@ -181,7 +185,22 @@ and for auto-saves we can restore from.")

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Package management
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
;; TODO: use `straight-use-package' for great good.
;; cf. https://github.com/radian-software/straight.el?tab=readme-ov-file#integration-with-use-package
;;
;; To use use-package, first install it with straight.el:
;;
;; (straight-use-package 'use-package)
;;
;; Now use-package will use straight.el to automatically install missing packages if you provide :straight t:
;;
;; (use-package el-patch
;; :straight t)
;;
;; You can still provide a custom recipe for the package... etc. etc.
;;

(require 'package)
;; Explicitly set the exact package archives list
Expand Down

0 comments on commit ad8d50f

Please sign in to comment.