summary refs log tree commit diff stats
path: root/tag-emacs/emacs.d/init.org
diff options
context:
space:
mode:
Diffstat (limited to 'tag-emacs/emacs.d/init.org')
-rw-r--r--tag-emacs/emacs.d/init.org7
1 files changed, 3 insertions, 4 deletions
diff --git a/tag-emacs/emacs.d/init.org b/tag-emacs/emacs.d/init.org
index 6398e10..352f6ef 100644
--- a/tag-emacs/emacs.d/init.org
+++ b/tag-emacs/emacs.d/init.org
@@ -162,17 +162,16 @@ Let’s try a basic theme.
                     (t
                      (show-mode-line))))
 
+            (setq-default cursor-type 'bar)
+            (setq-default cursor-in-non-selected-windows nil)
+
             (defun hide-clutter ()
               (interactive)
-              (setq-default cursor-type 'bar)
-              (setq-default cursor-in-non-selected-windows nil)
               (fringe-mode '(0 . 4))
               (hide-mode-line))
 
             (defun show-clutter ()
               (interactive)
-              (setq-default cursor-type 'box)
-              (setq-default cursor-in-non-selected-windows 'hollow)
               (fringe-mode '(8 . 4))
               (show-mode-line))
             (hide-clutter)))