spacemacs-editing-visual: fix #15667
This commit is contained in:
parent
4f5fddc96d
commit
2ec9614d5e
1 changed files with 3 additions and 2 deletions
|
@ -157,9 +157,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
|
||||
|
|
Reference in a new issue