Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Making the emacs cursor into a line

Tags:

emacs

emacs23

Hi I have been using Emacs23 for some time now and find it a really cool editor. However I am not happy with the cursor (or point in Emacs lingo) being a ' little black box'. I want it to be a nice thin straight line just the way it is in gedit or notepad. Any suggestions on how to do this?

like image 445
smilingbuddha Avatar asked Nov 16 '10 05:11

smilingbuddha


1 Answers

Add this to your .emacs file:

(setq-default cursor-type 'bar)  
like image 92
beggs Avatar answered Oct 17 '22 19:10

beggs