Contents / Previous / Next


Emacs Configuration

The `.emacs' file in your home directory
contains the emacs configuration.

It consists of Lisp function call expressions.
These consists of a function name followed by arguments,
all surrounded by parentheses, for example:

(setq fill-column 60)
(setq-default case-fold-search nil)
(setq user-mail-address "coon@yoyodyne.com")
(set-language-environment "Latin-1")
(load "foo")
(global-set-key "\C-xl" 'make-symbolic-link)
(define-key global-map "\C-xl" 'make-symbolic-link)
(define-key lisp-mode-map "\C-xl" 'make-symbolic-link)
(substitute-key-definition 'next-line 'forward-line global-map)