Set Emacs line-spacing to 0

vterm.el has a bug because it uses `(window-body-height)` to compute the number
of lines it can render, but it doesn't account for `line-spacing`.
This commit is contained in:
William Carroll 2020-08-31 00:49:07 +01:00
parent f3047cffc1
commit 3e23a86d0e

View file

@ -21,8 +21,8 @@
;; Configuration
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; increase line height
(setq-default line-spacing 4)
;; line height
(setq-default line-spacing 0)
(when window-system
(setq frame-title-format '(buffer-file-name "%f" ("%b"))))