Skip to content

Commit

Permalink
fix: correct recipe for org-contrib
Browse files Browse the repository at this point in the history
  • Loading branch information
abougouffa committed Dec 1, 2024
1 parent a32b046 commit 6bf763e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 deletions.
17 changes: 9 additions & 8 deletions early-init.el
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,18 @@
(add-to-list 'load-path (expand-file-name "core" (file-name-directory (file-truename (or load-file-name buffer-file-name)))))
(require 'me-vars)
(require 'me-lib)
(require 'package)
(require 'package-vc nil :noerror)

(setq
;; Do not make installed packages available when Emacs starts (we use `straight')
package-enable-at-startup t
package-user-dir (concat minemacs-local-dir "package-archives")
package-vc-register-as-project nil
;; Avoid garbage collections during startup, this will be overwritten by `+minemacs--gc-tweaks-h'
gc-cons-threshold most-positive-fixnum
;; Prefer loading newer files
load-prefer-newer t
;; Do not make installed packages available when Emacs starts (we use `straight')
package-enable-at-startup t
package-user-dir (concat minemacs-local-dir "package-archives")
package-vc-register-as-project nil
;; Remove some unneeded UI elements
default-frame-alist '((tool-bar-lines . 0)
(menu-bar-lines . 0)
Expand Down Expand Up @@ -56,14 +58,13 @@
;; MinEmacs will fallback to the default alpha of 93%.
(when-let* ((alpha (getenv "MINEMACS_ALPHA"))
(alpha (string-to-number alpha)))
(push `(alpha-background . ,(if (or (zerop alpha) (> alpha 100)) 93 alpha)) default-frame-alist))
(add-to-list 'default-frame-alist `(alpha-background . ,(if (or (zerop alpha) (> alpha 100)) 93 alpha))))

(when (color-defined-p (+deserialize-sym 'minemacs--background-color nil t))
(push `(background-color . ,minemacs--background-color) default-frame-alist))
(add-to-list 'default-frame-alist `(background-color . ,minemacs--background-color)))

;; Better titlebar on MacOS!
(when (featurep 'ns)
(push '(ns-transparent-titlebar . t) default-frame-alist))
(when (featurep 'ns) (add-to-list 'default-frame-alist '(ns-transparent-titlebar . t)))

;; Load the user early configuration files
(+load-user-configs 'early-config 'local/early-config)
Expand Down
2 changes: 1 addition & 1 deletion modules/me-org.el
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

;; Contributed packages to Org in search for new maintainers
(use-package org-contrib
:vc (:url "https://github.com/abougouffa/org-contrib" :branch "master"))
:vc (:url "https://github.com/abougouffa/org-contrib" :branch "master" :lisp-dir "lisp"))


;; Convert font-lock faces to other formats
Expand Down

0 comments on commit 6bf763e

Please sign in to comment.