diff options
author | Alan Pearce | 2013-06-08 14:06:41 +0100 |
---|---|---|
committer | Alan Pearce | 2013-06-08 14:06:41 +0100 |
commit | 8b00c6e89dfc49c1d8f1016b28c0199b40d8b75a (patch) | |
tree | bb76dfd734975fdbbbe6853a9e2a294dbb78ed9a /emacs | |
parent | 82e8081c4c9f04a8f1e65b0d410becee6982c17f (diff) | |
download | dotfiles-8b00c6e89dfc49c1d8f1016b28c0199b40d8b75a.tar.lz dotfiles-8b00c6e89dfc49c1d8f1016b28c0199b40d8b75a.tar.zst dotfiles-8b00c6e89dfc49c1d8f1016b28c0199b40d8b75a.zip |
Emacs: delay loading eldoc until needed
Diffstat (limited to 'emacs')
-rw-r--r-- | emacs/init.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/emacs/init.el b/emacs/init.el index 747bfa0..0a68bc3 100644 --- a/emacs/init.el +++ b/emacs/init.el @@ -845,7 +845,7 @@ Also returns nil if pid is nil." ("C-S-L" . mc/edit-lines))) (use-package eldoc - :defuns (eldoc-add-command) + :defer t :config (progn (eldoc-add-command 'paredit-backward-delete 'paredit-close-round))) |