Emacs Power Usage

Customizing emacs:

emacs has an easy customizing system based on setting special custom
variables, So no lisp knowledge is necessary for creating lisp code in .emacs
file.

We can run emacs customization as seen before, this actually
creates lisp code in .emacs file.
something like this:

(custom-set-variables
'(pc-select-selection-keys-only t)
'(load-home-init-file t t)
'(gnuserv-program (concat exec-directory "/gnuserv"))
'(pc-select-meta-moves-sexps t)
'(pc-selection-mode t))
(custom-set-faces)
Meir Maor