30 Jun 25
This is a website, which means it sometimes goes offline
26 Mar 24
23 Jan 24
09 Feb 23
30 Nov 22
enter magit-status > s to stage files > c to commit > C-c C-c to commit changes > p to push
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.
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).
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.
Init File Examples
The Emacs Initialization File