spacemacs

2FO 2022-09-08T20:34:45.749249Z

Hello, Two parter: 1. How can I zoom an individual window and not the entire frame? 2. Is there a way to universally disable the title bar that appears in certain modes e.g clojure mode. i.e: https://files.slack.com/files-pri/T03RZGPFR-F042C5S2E64/image.png

jeongsoolee09 2022-09-09T13:29:15.679409Z

Increasing font sizes is actually buffer-local, I conveniently use it Macs with command-= or command-- with osx layer declared. The function names themselves are spacemacs/scale-up-font and spacemacs/scale-down-font.

jeongsoolee09 2022-09-09T13:30:42.808529Z

The title bar is actually called a breadcrumb. You can disable the feature: https://emacs-lsp.github.io/lsp-mode/tutorials/how-to-turn-off/ I recommend putting it inside the :config section of use-package .

🙏 1
2FO 2022-09-09T17:38:10.548059Z

Much appreciated, removing the breadcrumb is a big improvement. spacemacs/scale-up-font and spacemacs/scale-down-font scale all buffers in the frame for me.

jeongsoolee09 2022-09-09T18:19:49.964839Z

@hey2fo Hmm, if I open A.clj on the first window and B.clj on the second, then calling spacemacs/scale-up-font on the first window only increases the size of the characters in A.clj .

2FO 2022-09-09T19:01:17.585499Z

Good to know, perhaps there's a variable I can set to get that behavior. I'll do some investigating

👍 1