5

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?

1 Answer 1

5

setq-default sets the default value of a variable:

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

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .