diff options
author | Case Duckworth | 2021-03-01 22:53:56 -0600 |
---|---|---|
committer | Case Duckworth | 2021-03-01 22:53:56 -0600 |
commit | a7a286e312d7f03ead952fa80e5d113714d35151 (patch) | |
tree | b41b2302a24f4695c24bc1ea1e56f6c9459254a2 | |
parent | blargh (diff) | |
download | emacs-a7a286e312d7f03ead952fa80e5d113714d35151.tar.gz emacs-a7a286e312d7f03ead952fa80e5d113714d35151.zip |
Config eldoc
-rw-r--r-- | init.el | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/init.el b/init.el index e090904..0252606 100644 --- a/init.el +++ b/init.el | |||
@@ -641,7 +641,11 @@ | |||
641 | (put 'if 'common-lisp-indent-function 2) | 641 | (put 'if 'common-lisp-indent-function 2) |
642 | (put 'dotimes-protect 'common-lisp-indent-function | 642 | (put 'dotimes-protect 'common-lisp-indent-function |
643 | (get 'when 'common-lisp-indent-function)) | 643 | (get 'when 'common-lisp-indent-function)) |
644 | 644 | ;; eldoc mode | |
645 | (use-package eldoc | ||
646 | :straight nil | ||
647 | :init (setq-default eldoc-echo-area-display-truncation-message nil | ||
648 | eldoc-idle-delay 0)) | ||
645 | 649 | ||
646 | ;; Dired | 650 | ;; Dired |
647 | (use-package dired | 651 | (use-package dired |