Is there a something I can put in my .emacs config file to set the default line-ending style for newly created files?

I'm using GNU emacs for windows, but would like newly created files to use unix-style (line-feed only) line endings by default.

link|improve this question
feedback

1 Answer

up vote 1 down vote accepted

I have the following in my Windows section of my config:

(setq-default buffer-file-coding-system 'utf-8-unix)
(setq eol-mnemonic-dos "(DOS)")
(setq eol-mnemonic-unix "\\")
link|improve this answer
Thanks - (setq-default buffer-file-coding-system 'utf-8-unix) was what I was looking for. – Henry Dec 28 '11 at 12:43
feedback

Your Answer

 
or
required, but never shown

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