From 4c8f54336bd3a55f9eb52251e3cd432c7a1e8a88 Mon Sep 17 00:00:00 2001 From: Marc Pohling Date: Tue, 1 May 2018 10:51:02 +0200 Subject: [PATCH] changed load-path for beancount-mode, added markdown-mode --- config.org | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/config.org b/config.org index 30daa0a..3d55677 100644 --- a/config.org +++ b/config.org @@ -640,6 +640,7 @@ Ivy-Hydra adds stuff in minibuffer when you press C-o :config (helm-projectile-on)) #+END_SRC + * Latex Requirements for Linux: - Latex @@ -681,6 +682,13 @@ Ivy-Hydra adds stuff in minibuffer when you press C-o #+end_src +* Markdown + Major mode to edit markdown files + + #+BEGIN_SRC emacs-lisp +(use-package markdown-mode + :ensure t) + #+END_SRC * Emails Currently following tools are required: - notmuch (edit, read, tag, delete emails) @@ -746,7 +754,7 @@ deactivate ; :load-path "/opt/beancount/elisp/" ;; :ensure t ; :mode ("\\.beancount$" . beancount-mode) - (load "/home/marc/.emacs.d/elisp/beancount-mode.el") ; somehow load-path in use-package doesn't work + (load "/home/marc/.emacs.d/user-local/elisp/beancount-mode.el") ; somehow load-path in use-package doesn't work (use-package beancount :load-path "/home/marc/.emacs.d/elisp" :mode ("\\.beancount$" . beancount-mode)