Variable: evil-default-cursor
evil-default-cursor is a customizable variable defined in
evil-vars.el.
Value
t
Documentation
The default cursor.
May be a cursor type as per cursor-type, a color string as passed
to set-cursor-color, a zero-argument function for changing the
cursor, or a list of the above.
nil is interpreted as t; if you want the nil cursor-type (i.e.,
you want to disable the cursor), set this variable to (list nil).
Source Code
;; Defined in ~/.emacs.d/elpa/evil-20260728.1438/evil-vars.el
(defcustom evil-default-cursor t
"The default cursor.
May be a cursor type as per `cursor-type', a color string as passed
to `set-cursor-color', a zero-argument function for changing the
cursor, or a list of the above.
nil is interpreted as t; if you want the nil `cursor-type' (i.e.,
you want to disable the cursor), set this variable to (list nil)."
:type '(set symbol (cons symbol symbol) string function)
:group 'evil)