Finding New Emacs Packages

Updates

Finding New Emacs Packages

Let's go look for interesting Emacs packages to try!

(straight-use-package '(machine :repo "https://codeberg.org/acdw/machine.el"))
(defun dw/open-file-in-directory (initial-path)
  (let ((default-directory (expand-file-name initial-path)))
    (call-interactively #'find-file)))

Logos config:

(require 'logos)
(setq logos-outlines-are-pages t)
(setq-default logos-hide-cursor nil
              logos-hide-mode-line t
              logos-hide-buffer-boundaries t
              logos-hide-fringe t
              logos-variable-pitch t
              logos-buffer-read-only nil
              logos-scroll-lock nil
              logos-olivetti t)
(straight-use-package
 '(eat :type git
       :host codeberg
       :repo "https://codeberg.org/akib/emacs-eat"
       :files ("*.el" ("term" "term/*.el") "*.texi"
               "*.ti" ("terminfo/e" "terminfo/e/*")
               ("terminfo/65" "terminfo/65/*")
               ("integration" "integration/*")
               (:exclude ".dir-locals.el" "*-tests.el"))))

(straight-use-package '(eat :type git :host github :repo "emacsmirror/eat"))

Enjoyed this stream? Explore our hands-on courses for deeper, structured learning on Guile Scheme and more.

Get the System Crafters Newsletter
Updates on open source tools, tutorials, and community projects. We'll also occasionally let you know about new courses and resources.
Name (optional)
Email Address