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"))
Subscribe to the System Crafters Newsletter!
Stay up to date with the latest System Crafters news and updates! Read the Newsletter page for more information.
Name (optional)
Email Address