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

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.