diff options
-rw-r--r-- | .emacs.d/lisp/init-lsp.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.emacs.d/lisp/init-lsp.el b/.emacs.d/lisp/init-lsp.el index a66cf28..18856c4 100644 --- a/.emacs.d/lisp/init-lsp.el +++ b/.emacs.d/lisp/init-lsp.el @@ -40,9 +40,10 @@ lsp-modeline-code-actions-enable nil lsp-modeline-diagnostics-enable nil lsp-treemacs-theme "Iconless" - ;; user cider for indendation and completion instead + ;; user cider for indendation, completion and eldoc instead lsp-enable-indentation nil - lsp-completion-enable nil)) + lsp-completion-enable nil + lsp-eldoc-enable-hover nil)) (provide 'init-lsp) ;;; init-lsp.el ends here |