help-gnu-emacs
[Top][All Lists]
Advanced

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

Re: Installing emacs mode


From: Sebastian Tennant
Subject: Re: Installing emacs mode
Date: Mon, 31 Oct 2005 20:12:30 +0000
User-agent: Debian Thunderbird 1.0.2 (X11/20050602)

jeessy@gmail.com wrote:
> Hi, thank you for your reply but on Bill gates'os  emacs version i
> can't find the .emacs file :|

So you now have some useful Windows info.

In short you have to create your own ~/.emacs if you don't have one.
Emacs will read then read it at start-up.

It's such a plain and simple file, but don't call it ~/.emacs.txt !!!

It must be ~/.emacs (or $HOME/.emacs).

You can just copy and paste this if you like:

sebyte



;; my ~/.emacs
;;
;; elsip (emacs lisp) uses semi-colons for comments

(add-to-list 'load-path "/home/jeessy/elisp") ;change according to Windows'
                                              ;requirements

(autoload 'css-mode "css-mode" "CSS editing mode" t nil) ;"css-mode" corresponds
                                                         ;to the filename

(global-font-lock-mode 1) ;this will ensure syntax highlighting works

;; end of your ~/.emacs
;;
;; very soon this will be two pages long :-)





reply via email to

[Prev in Thread] Current Thread [Next in Thread]