diff options
author | jao <jao@gnu.org> | 2022-09-29 00:10:26 +0100 |
---|---|---|
committer | jao <jao@gnu.org> | 2022-09-29 00:11:37 +0100 |
commit | 00f4ac1320d5f521e34b280a88eca6709cfff890 (patch) | |
tree | 3528a56a98d2a7e7e9f80db2896b6c2cd5932a59 | |
parent | ab65e9d5cd1165d7213fdf3295ddbabb481766ff (diff) | |
download | elibs-00f4ac1320d5f521e34b280a88eca6709cfff890.tar.gz elibs-00f4ac1320d5f521e34b280a88eca6709cfff890.tar.bz2 |
nits
-rw-r--r-- | init.el | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1812,7 +1812,7 @@ ;;;; diff fringe indicators (diff-hl) (use-package diff-hl :ensure t - :custom ((diff-hl-draw-borders t) + :custom ((diff-hl-draw-borders nil) (diff-hl-side 'right) (diff-hl-margin-symbols-alist '((insert . "█") @@ -1827,7 +1827,7 @@ (add-hook 'magit-post-refresh-hook 'diff-hl-magit-post-refresh)) (global-diff-hl-mode 1) -(diff-hl-margin-mode 1) +(unless (display-graphic-p) (diff-hl-margin-mode 1)) ;;;; magit/forge (use-package magit @@ -2337,6 +2337,7 @@ ;;; Graphics ;;;; images (setq image-use-external-converter t) +(setq widget-image-enable nil) ;;;; gnuplot (use-package gnuplot |