Browse Source

changed load-path for beancount-mode, added markdown-mode

master
Marc Pohling 6 years ago
parent
commit
4c8f54336b
1 changed files with 9 additions and 1 deletions
  1. 10
      config.org

10
config.org

@ -640,6 +640,7 @@ Ivy-Hydra adds stuff in minibuffer when you press C-o
:config :config
(helm-projectile-on)) (helm-projectile-on))
#+END_SRC #+END_SRC
* Latex * Latex
Requirements for Linux: Requirements for Linux:
- Latex - Latex
@ -681,6 +682,13 @@ Ivy-Hydra adds stuff in minibuffer when you press C-o
#+end_src #+end_src
* Markdown
Major mode to edit markdown files
#+BEGIN_SRC emacs-lisp
(use-package markdown-mode
:ensure t)
#+END_SRC
* Emails * Emails
Currently following tools are required: Currently following tools are required:
- notmuch (edit, read, tag, delete emails) - notmuch (edit, read, tag, delete emails)
@ -746,7 +754,7 @@ deactivate
; :load-path "/opt/beancount/elisp/" ; :load-path "/opt/beancount/elisp/"
;; :ensure t ;; :ensure t
; :mode ("\\.beancount$" . beancount-mode) ; :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 (use-package beancount
:load-path "/home/marc/.emacs.d/elisp" :load-path "/home/marc/.emacs.d/elisp"
:mode ("\\.beancount$" . beancount-mode) :mode ("\\.beancount$" . beancount-mode)

Loading…
Cancel
Save