about summary refs log tree commit diff
path: root/emacs/.emacs.d/wpc/wpc-ui.el
diff options
context:
space:
mode:
authorWilliam Carroll <wpcarro@gmail.com>2020-08-30T23·49+0100
committerWilliam Carroll <wpcarro@gmail.com>2020-08-30T23·49+0100
commit3e23a86d0e3af40faff761867b6780b63c4b6fef (patch)
tree18755c65d5828d3979338964c0349f2d4275ba71 /emacs/.emacs.d/wpc/wpc-ui.el
parentf3047cffc1d847f12c9bb5c0706ea208639d2fdb (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.el4
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 cdb2102174..b80dcda410 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"))))