From 3b3343b7b3cb93274fbb5605d982f41b1d26ade3 Mon Sep 17 00:00:00 2001 From: Steph Enders Date: Thu, 30 Mar 2023 20:34:16 -0400 Subject: Reorganize emacs.d - use straight.el Major restructuring of the emacs directory: - moved .emacs to .emacs.d/init.el - setup early-init.el (as per straight.el directions) - moved major things into plugins.el - moved package installs into packages.el --- .emacs.d/packages.el | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .emacs.d/packages.el (limited to '.emacs.d/packages.el') diff --git a/.emacs.d/packages.el b/.emacs.d/packages.el new file mode 100644 index 0000000..a625f5b --- /dev/null +++ b/.emacs.d/packages.el @@ -0,0 +1,9 @@ +(straight-use-package 'org) +(straight-use-package 'elpher) +(straight-use-package 'visual-fill-column) +(straight-use-package 'markdown-mode) + +;; custom recipes +(straight-use-package '(moe-theme :host github + :repo "kuanyui/moe-theme.el" + :branch "master")) -- cgit v1.2.3-54-g00ecf