This commit is contained in:
Eli Mellen 2019-09-04 10:37:56 -04:00
parent a0b657b470
commit 520b61f793
2 changed files with 12 additions and 8 deletions

1
README.md Normal file
View File

@ -0,0 +1 @@
# Emacs config

View File

@ -159,8 +159,8 @@ I've been waffling a lot, lately, and also enjoying light themes.
(use-package flycheck (use-package flycheck
:ensure t :ensure t
:defer 2 :defer 2
:config (global-flycheck-mode)) :config (global-flycheck-mode)
(add-hook 'after-init-hook #'global-flycheck-mode) (add-hook 'after-init-hook #'global-flycheck-mode))
#+END_SRC #+END_SRC
** Automatically re-size splits ** Automatically re-size splits
@ -176,10 +176,10 @@ I've been waffling a lot, lately, and also enjoying light themes.
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp
(use-package org (use-package org
:mode (("\\.org$" . org-mode)) :mode (("\\.org$" . org-mode))
:ensure t) :ensure t
:config
(setq org-todo-keywords (setq org-todo-keywords
'((sequence "TODO" "IN-PROCESS" "FOLLOW-UP" "|" "DONE"))) '((sequence "TODO" "IN-PROCESS" "FOLLOW-UP" "|" "DONE"))))
(use-package org-bullets (use-package org-bullets
:ensure t :ensure t
@ -212,7 +212,9 @@ Who needs Postman when you've got emacs!?
*** WISP *** WISP
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp
(use-package wispjs-mode) (use-package wispjs-mode
:ensure t
:mode "\\.wisp\\'")
#+END_SRC #+END_SRC
*** Markdown *** Markdown
@ -244,7 +246,8 @@ Who needs Postman when you've got emacs!?
*** JSON *** JSON
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp
(use-package json-mode (use-package json-mode
:ensure t) :ensure t
:mode "\\.json\\'")
#+END_SRC #+END_SRC
*** Javascript *** Javascript