30 Nov 22

09 Dec 14

This document is intended to give the reader a “feel” for org-mode and to teach basic usage with step-by-step instructions and plentiful screenshots.


06 Jun 14


Emacs is the extensible, customizable, self-documenting real-time display editor. This manual describes how to edit with Emacs and some of the ways to customize it; it corresponds to GNU Emacs version 24.3.








Your init file contains personal EmacsLisp code that you want to execute when you start Emacs.

Tags:

The variable ‘load-path’ lists all the directories where Emacs should look for Elisp files. The first file found is used, therefore the order of the directories is relevant.

Preference is given to byte-compiled files (.elc) when both a byte-compiled file and a source file (.el) are found. Therefore, make sure to recompile files after making changes to them (or don’t compile the files at all).

Tags:

Libraries of Lisp Code for Emacs

Emacs Lisp code is stored in files whose names conventionally end in .el. Such files are automatically visited in Emacs Lisp mode.