Emacs Init: Abbrev Mode

By Xah Lee. Date: .

Turn on Abbrev Mode

To turn on globally when emacs starts, put this in your Emacs Init File:

;; turn on abbrev mode globally
(abbrev-mode)

Save Abbrev

When you quit, emacs will ask you if you want to save.

To auto save, put this in your Emacs Init File:

(setq save-abbrevs 'silently)

Abbrev File Location

The abbrevs is saved in a file at a path specified by the variable

abbrev-file-name

By default, it's at ~/.emacs.d/abbrev_defs

Emacs, using abbrev mode