Skip to content

Commit

Permalink
spacemacs-editing-visual: fix syl20bnr#15667
Browse files Browse the repository at this point in the history
  • Loading branch information
lebensterben authored and bcc32 committed Jun 13, 2024
1 parent 799bd80 commit 2d8681a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions layers/+spacemacs/spacemacs-editing-visual/packages.el
Original file line number Diff line number Diff line change
Expand Up @@ -159,9 +159,10 @@

(defun spacemacs-editing-visual/init-term-cursor ()
(use-package term-cursor
:if (not (display-graphic-p))
:defer t
:init (global-term-cursor-mode)))
:init
(when (display-graphic-p)
(global-term-cursor-mode))))

(defun spacemacs-editing-visual/init-volatile-highlights ()
(use-package volatile-highlights
Expand Down

0 comments on commit 2d8681a

Please sign in to comment.