Custom

From WikEmacs
Revision as of 14:15, 29 March 2012 by S9nn9s (talk | contribs) (Created page with "You essentially customize Emacs by writing Emacs lisp, either by your self or by Emacs. == Init Files == Emacs save its customization on "~/.emacs" or under directory "./...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

You essentially customize Emacs by writing Emacs lisp, either by your self or by Emacs.

Init Files

Emacs save its customization on "~/.emacs" or under directory "./.emacs.d". When Emacs start, it read and eval the lisp program in the file.

Easy Customization Interface

You can customize Emacs without explicitly writing code. with M-x customize, a customized buffer is created. User can change the variable, function and add Hook. By doing that, Emacs writing the customization to your initial files.