[go: up one dir, main page]

30 Jun 25

30 Nov 22

enter magit-status > s to stage files > c to commit > C-c C-c to commit changes > p to push

by eli 3 years ago

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.

by lamnatos 11 years ago

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.

by lamnatos 11 years ago







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

by lamnatos 11 years ago
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).

by lamnatos 11 years ago
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.

by lamnatos 11 years ago