From 4f1426409c1c3734e7dfc3f1140fc3a39234ca63 Mon Sep 17 00:00:00 2001 From: Case Duckworth Date: Thu, 10 Dec 2020 22:56:25 -0600 Subject: Update README --- README.md | 60 +++++++++++++++++++++++++++++++++++++++++++++++------------- 1 file changed, 47 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index 4b21784..242e159 100644 --- a/README.md +++ b/README.md @@ -7,19 +7,19 @@ Let’s configure Emacs using Org mode, they said. It’ll be fun, they said. ## Correct `exec-path` (let ((win-downloads "c:/Users/aduckworth/Downloads")) - (dolist (path `(;; Linux - ,(expand-file-name "bin" - user-emacs-directory) - ,(expand-file-name "~/bin") - ,(expand-file-name "~/.local/bin") - ,(expand-file-name "~/Scripts") - ;; Windows - ,(expand-file-name "emacs/bin" - win-downloads) - ,(expand-file-name "PortableGit/bin" - win-downloads) - ,(expand-file-name "PortableGit/usr/bin" - win-downloads))) + (dolist (path (list ;; Linux + (expand-file-name "bin" + user-emacs-directory) + (expand-file-name "~/bin") + (expand-file-name "~/.local/bin") + (expand-file-name "~/Scripts") + ;; Windows + (expand-file-name "emacs/bin" + win-downloads) + (expand-file-name "PortableGit/bin" + win-downloads) + (expand-file-name "PortableGit/usr/bin" + win-downloads))) (when (file-exists-p path) (add-to-list 'exec-path path)))) @@ -677,6 +677,22 @@ I add it to the `find-file-hook` *and* `before-save-hook` because I don't want t (company-posframe-mode +1)) +## Languages + + +### Lua + + (use-package lua-mode + :mode "\\.lua\\'" + :interpreter "lua") + + +### Fennel + + (use-package fennel-mode + :mode "\\.fnl\\'") + + # Writing @@ -947,6 +963,24 @@ from [unpackaged.el](https://github.com/alphapapa/unpackaged.el#ensure-blank-lin (0x0-default-service 'ttm)) +## Elfeed + +inspired by ["Lazy Elfeed"](https://karthinks.com/software/lazy-elfeed/). + + (use-package elfeed + :when (executable-find "curl") + :hook + (elfeed-show-mode . visual-fill-column-mode)) + + (use-package elfeed-org + :custom + (rmh-elfeed-org-files + (list (expand-file-name "elfeed.org" + user-emacs-directory))) + :init + (elfeed-org)) + + # Appendices -- cgit 1.4.1-21-gabe81