DRINKING EMACS NEAT

Watch the Video Here

How to really speed up Emacs
What is good about Emacs is Emacs – Vanilla Emacs
Parasitic packages.

I do not install external packages until I am sure Vanilla Emacs cannot do the job.

Removed all my external packages
Customized Emacs the way I wanted it
Sought Solutions to probelms I normally solve with packages

;; OPEN FILES IN EXTERNAL APP (use S-! on the file to open)

(setq dired-guess-shell-alist-user
   '(("\\.pdf$" "firefox")
   ("\\.docx$" "libreoffice --writer")
   ("\\.odt$" "libreoffice --writer")
   ("\\.txt$" "geany")
   ("\\.png$" "viewnior")
   ("\\.jpg$" "viewnior")
   ("\\.tiff$" "viewnior")
   ("\\.tif$" "viewnior")
   ("\\.mkv$" "vlc")
   ("\\.mp4$" "vlc")
   ("\\.avi$" "vlc")
   ("\\.wmv$" "vlc")
   ("\\.mp3$" "audacious")
   ("\\.wav$" "audacious")
   ("\\.html$" "firefox")))

Click on a completion to select it.
In this buffer, type RET to select the completion near point.

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

Postscript added <2025-04-26 Sat>

The idea of a neat Emacs has now gained traction:

https://github.com/LionyxML/emacs-solo/

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

Return to Home