I've made these changes to ~/.config/emacs/init.el to fix it:
diff --git a/init.el b/init.el
index 2d684d0..ed8ebbf 100644
--- a/init.el
+++ b/init.el
@@ -43,7 +43,7 @@ package.el or Guix depending on the value of
`crafted-prefer-guix-packages'."
(if crafted-prefer-guix-packages
(unless (featurep package)
- (message "Package '%s' does not appear to be installed by Guix!"))
+ (message "Package '%s' does not appear to be installed by Guix: " package))
(crafted-package-install-package package)))
;; Check the system used
(END)
Am I using rational-ensure-package the wrong way or is it actually broken?
I'm getting this error since I first installed rational-emacs
I'm using
rational-ensure-package
in my config:Click to see my
```elisp ;;; config.el --- Personal Rational Emacs Config -*- lexical-binding: t; -*- ;;; Code: (toggle-frame-fullscreen) (rational-ensure-package 'ergoemacs-mode) (require 'ergoemacs-mode) (ergoemacs-mode t) (require 'rational-defaults) (require 'rational-ui) (require 'rational-completion) ;; Archcraft pre-installed: ;; "JetBrains Mono", "FiraCode Nerd Font", "DejaVu Sans Mono", "Source Code Pro" (custom-set-variables '(rational-ui-default-font'(:font "FiraCode Nerd Font Light 12" :height 230))) (set-face-attribute 'variable-pitch nil :font "Iosevka" :weight 'light) ;; (eval-after-load "projectile")?? (variable-pitch-mode 1) (custom-set-variables '(rational-ui-display-line-numbers t)) (define-key vertico-map (kbd "C-f") 'vertico-exit) (when (version<= "9.2" (org-version)) (require 'org-tempo)) (setq org-startup-folded t) ;; Didn`t work ;; (setq org-startup-truncated nil) ;; Try (toggle-truncate-lines) (provide 'config) ;;; config.el ends here ```config.el
I've made these changes to
~/.config/emacs/init.el
to fix it:Am I using
rational-ensure-package
the wrong way or is it actually broken?