Custom
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 "./...")
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.