From 520b61f793912d78fc09bd960f627f15b8b68312 Mon Sep 17 00:00:00 2001 From: Eli Mellen Date: Wed, 4 Sep 2019 10:37:56 -0400 Subject: [PATCH] * --- README.md | 1 + pillow-fort.org | 19 +++++++++++-------- 2 files changed, 12 insertions(+), 8 deletions(-) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..6a6bd27 --- /dev/null +++ b/README.md @@ -0,0 +1 @@ +# Emacs config diff --git a/pillow-fort.org b/pillow-fort.org index 21c148e..80a7423 100644 --- a/pillow-fort.org +++ b/pillow-fort.org @@ -159,8 +159,8 @@ I've been waffling a lot, lately, and also enjoying light themes. (use-package flycheck :ensure t :defer 2 - :config (global-flycheck-mode)) -(add-hook 'after-init-hook #'global-flycheck-mode) + :config (global-flycheck-mode) + (add-hook 'after-init-hook #'global-flycheck-mode)) #+END_SRC ** Automatically re-size splits @@ -176,10 +176,10 @@ I've been waffling a lot, lately, and also enjoying light themes. #+BEGIN_SRC emacs-lisp (use-package org :mode (("\\.org$" . org-mode)) - :ensure t) - -(setq org-todo-keywords - '((sequence "TODO" "IN-PROCESS" "FOLLOW-UP" "|" "DONE"))) + :ensure t + :config + (setq org-todo-keywords + '((sequence "TODO" "IN-PROCESS" "FOLLOW-UP" "|" "DONE")))) (use-package org-bullets :ensure t @@ -212,7 +212,9 @@ Who needs Postman when you've got emacs!? *** WISP #+BEGIN_SRC emacs-lisp -(use-package wispjs-mode) +(use-package wispjs-mode + :ensure t + :mode "\\.wisp\\'") #+END_SRC *** Markdown @@ -244,7 +246,8 @@ Who needs Postman when you've got emacs!? *** JSON #+BEGIN_SRC emacs-lisp (use-package json-mode - :ensure t) + :ensure t + :mode "\\.json\\'") #+END_SRC *** Javascript