From b14075558dc0add6d2bac78179fc224e0c500729 Mon Sep 17 00:00:00 2001 From: finga Date: Thu, 14 Jun 2018 18:23:18 +0200 Subject: [PATCH] add resizing of cursor width to char width --- .emacs.d/init.el | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.emacs.d/init.el b/.emacs.d/init.el index 2321d0d..b893bb5 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -17,6 +17,9 @@ ;; use space instead of tabs (setq-default indent-tabs-mode nil) +;; resize cursor to character +(setq x-stretch-cursor t) + ;; delete trailing whitespaces before saving (add-hook 'before-save-hook 'delete-trailing-whitespace)