spacemacs

Spacemacs docs: http://develop.spacemacs.org/doc/DOCUMENTATION.html http://develop.spacemacs.org/layers/+lang/clojure/README.html https://practicalli.github.io/spacemacs/
grierson 2021-01-04T21:13:07.311400Z

I’ve start using Spacemacs and now getting these pop ups when I put my cursor on a function? how do I hide them?

practicalli-john 2021-01-04T22:28:45.313700Z

@grierson my fist guess this is LSP popup. If not using LSP for any language, then remove the lsp layer from.spacemacs.

👍 1
practicalli-john 2021-01-04T22:29:32.315Z

Or if using LSP but not for Clojure, then set the Clojure backend to cider using a layer variable

practicalli-john 2021-01-04T22:30:45.315400Z

https://clojurians.slack.com/archives/C09C8GRLY/p1608311515221700

practicalli-john 2021-01-04T22:32:20.318Z

If you want to use LSP with Clojure, then take a look at the lsp-mode website and figure out which configs you wish to disable (not something I understand myself, sorry).

practicalli-john 2021-01-04T22:32:52.318200Z

https://emacs-lsp.github.io/lsp-mode/

Aaron Cooley 2021-01-04T23:01:19.318700Z

in dotspacemacs-configuration-layers, use:

(lsp :variables
          lsp-ui-doc-enable nil)

👍 1
Aaron Cooley 2021-01-04T23:02:21.319300Z

I had to disable these for R. Couldn't find it in the ESS documentation, eventually figured out LSP was the culprit.

👍 1
grierson 2021-01-04T23:34:56.319600Z

Thanks! I’ve been reading all your guides. It really helped me get started with Spacesmacs! ❤️👍🙏

grierson 2021-01-04T23:38:11.319800Z

yeh, that got it! Thank you! 🙂