[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Re: Setting startup defaults



csj <csj@myrealbox.com> writes:

> General problem: The format of .emacs has me stumped. Where is it
> documented? Do I have to know lisp?

.emacs is evaluated as an Emacs Lisp program, so you have to know
at least basic Lisp in order to read or modify it.  There's basic
information on this in the Emacs manual under node "Init File".

> Specific problem: I want to start emacs with my margin already set to 65
> (instead of the factory default 70). What specific line do I put in
> ..emacs?

(set-default 'fill-column 65)
Or if you only want this to happen in, say, mail buffers, you
could use something like
(add-hook 'mail-setup-hook '(lambda () (setq fill-column 65)))

-- 
"Mon peu de succès près des femmes est toujours venu de les trop aimer."
--Jean-Jacques Rousseau


--
To UNSUBSCRIBE, email to debian-emacsen-request@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org



Reply to: