Closed tsandstr closed 3 years ago
Set cursor shapes BEFORE loading extension Your config might look like this
(setq evil-motion-state-cursor 'box) ; █
(unless (display-graphic-p)
(require 'evil-terminal-cursor-changer)
(evil-terminal-cursor-changer-activate))
Set cursor shapes BEFORE loading extension Your config might look like this
(setq evil-motion-state-cursor 'box) ; █ (unless (display-graphic-p) (require 'evil-terminal-cursor-changer) (evil-terminal-cursor-changer-activate))
Does not help.
Doesn't help for me either
This worked for me.
(unless (display-graphic-p)
(use-package evil-terminal-cursor-changer
:ensure t
:init
(setq evil-motion-state-cursor 'box) ; █
(setq evil-visual-state-cursor 'box) ; █
(setq evil-normal-state-cursor 'box) ; █
(setq evil-insert-state-cursor 'bar) ; ⎸
(setq evil-emacs-state-cursor 'hbar) ; _
:config
(etcc-on)
))
Works for me too, thanks!
Config code copied directly from github. This is the result.