Created
October 26, 2024 18:33
-
-
Save dmgerman/992094ee3c6778c5a127fa57add4cf07 to your computer and use it in GitHub Desktop.
Version Init
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(message "what is going on") | |
(setq package-enable-at-startup nil) | |
;;; REMEMBER: they are in reverse mode! | |
(add-to-list 'load-path "~/.emacs.d/org-mode/lisp") | |
(add-to-list 'load-path "~/.emacs.d/modules/org-roam") | |
(add-to-list 'load-path "~/.emacs.d/modules/consult") | |
(add-to-list 'load-path "~/.emacs.d/modules/consult-org-roam") | |
(add-to-list 'load-path "~/.emacs.d/modules/org-roam-gt") | |
(setq package-load-list '( | |
(org nil) | |
(org-roam nil) | |
(consult-org-roam nil) | |
(mu4e nil) | |
all)) | |
(setq straight-base-dir (concat user-emacs-directory emacs-version "/")) | |
(setq package-user-dir (concat user-emacs-directory emacs-version "/elpa") ) | |
(require 'org) | |
(message "Load path %s" load-path) | |
(require 'package) | |
(add-to-list 'package-archives '("melpa-stable" . "https://stable.melpa.org/packages/") t) | |
(package-initialize) | |
(unless (package-installed-p 'use-package) | |
(package-refresh-contents) | |
(package-install 'use-package) | |
) | |
(eval-and-compile | |
(setq use-package-always-ensure t | |
use-package-expand-minimally t) | |
) | |
(org-babel-load-file "~/.emacs.d/dmg-init.org") | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment