diff options
| author | Thomas Schneider <qsx@chaotikum.eu> | 2020-07-26 18:57:47 +0200 |
|---|---|---|
| committer | Thomas Schneider <qsx@chaotikum.eu> | 2020-07-26 18:57:47 +0200 |
| commit | 9d39d9eb27aba7b60451c59a21d947c129edc461 (patch) | |
| tree | 8582581ecc4286e2f777109cd40de0d1c9eef300 /dot.emacs.d/init.el | |
| parent | c442e9169b3dfbbaba7fa2f13a590a383706c7f7 (diff) | |
Emacs: Fix calc-digit-map handling
Diffstat (limited to 'dot.emacs.d/init.el')
| -rw-r--r-- | dot.emacs.d/init.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/dot.emacs.d/init.el b/dot.emacs.d/init.el index 94cf1e3..1db31ca 100644 --- a/dot.emacs.d/init.el +++ b/dot.emacs.d/init.el @@ -269,7 +269,9 @@ (add-hook 'text-mode-hook #'turn-on-auto-fill) ;; Use keypad comma as decimal separator -(define-key calc-digit-map (kbd "<kp-separator">) ".") +(use-package calc + :config + (define-key calc-digit-map (kbd "<kp-separator>") ".")) ;;; Mail (use-package gnus |
