diff options
| author | Thomas Schneider <qsx@chaotikum.eu> | 2020-07-26 19:20:26 +0200 |
|---|---|---|
| committer | Thomas Schneider <qsx@chaotikum.eu> | 2020-07-26 19:20:26 +0200 |
| commit | 18ad8837e1a5475a2db1d1ea1f02034fedbf043b (patch) | |
| tree | 9aaa0e8a5f36a0f6b824397c5841cbac9d9dc2eb /dot.emacs.d/init.el | |
| parent | 9482030c489149b9d2a7fa4d54f05b13f954eacc (diff) | |
Emacs: Add some packages and config
Diffstat (limited to 'dot.emacs.d/init.el')
| -rw-r--r-- | dot.emacs.d/init.el | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/dot.emacs.d/init.el b/dot.emacs.d/init.el index 1279a02..526f728 100644 --- a/dot.emacs.d/init.el +++ b/dot.emacs.d/init.el @@ -278,6 +278,21 @@ (add-hook 'text-mode-hook #'turn-on-auto-fill) +(use-package json-mode) + +(use-package adoc-mode) + +(use-package dpkg-dev-el + ;; In Debian, it’s provided by a debian package, no need to install from MELPA + :if (not (file-exists-p "/etc/debian_version"))) + +(use-package haskell-mode) + +(use-package ledger-mode + :config + (setq ledger-default-date-format "%Y-%m-%d" + ledger-use-iso-dates t)) + ;; Use keypad comma as decimal separator (use-package calc :config |
