summary refs log tree commit diff stats
path: root/init.el
diff options
context:
space:
mode:
authorCase Duckworth2021-03-01 22:53:56 -0600
committerCase Duckworth2021-03-01 22:53:56 -0600
commita7a286e312d7f03ead952fa80e5d113714d35151 (patch)
treeb41b2302a24f4695c24bc1ea1e56f6c9459254a2 /init.el
parentblargh (diff)
downloademacs-a7a286e312d7f03ead952fa80e5d113714d35151.tar.gz
emacs-a7a286e312d7f03ead952fa80e5d113714d35151.zip
Config eldoc
Diffstat (limited to 'init.el')
-rw-r--r--init.el6
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