It's possible to modify the style of the cursor by setting the value of the window local variable cursor-type.

(setq cursor-type '(hbar . 1))

How can I make all existing and future windows use the same cursor-type?

link|improve this question
feedback

1 Answer

up vote 0 down vote accepted

setq-default sets the default value of a variable:

(setq-default cursor-type '(hbar . 1))
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.