diff options
author | William Carroll <wpcarro@gmail.com> | 2020-08-30T23·49+0100 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2020-08-30T23·49+0100 |
commit | 3e23a86d0e3af40faff761867b6780b63c4b6fef (patch) | |
tree | 18755c65d5828d3979338964c0349f2d4275ba71 /emacs/.emacs.d/wpc/wpc-ui.el | |
parent | f3047cffc1d847f12c9bb5c0706ea208639d2fdb (diff) |
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`.
Diffstat (limited to 'emacs/.emacs.d/wpc/wpc-ui.el')
-rw-r--r-- | emacs/.emacs.d/wpc/wpc-ui.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/emacs/.emacs.d/wpc/wpc-ui.el b/emacs/.emacs.d/wpc/wpc-ui.el index cdb210217412..b80dcda41097 100644 --- a/emacs/.emacs.d/wpc/wpc-ui.el +++ b/emacs/.emacs.d/wpc/wpc-ui.el @@ -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")))) |