1

Improve documentation and whitespace consistency

This commit is contained in:
Jessie Hildebrandt 2020-07-21 20:48:25 -04:00
parent 004e5c2648
commit 33093db8e8

13
init.el
View File

@ -1,12 +1,22 @@
;;; init.el --- My custom Emacs configuration file. -*- lexical-binding: t; -*- ;;; init.el --- My custom Emacs configuration file. -*- lexical-binding: t; -*-
;;; Commentary:
;;================================================================================ ;;================================================================================
;; ;;
;; Jessie Hildebrandt's ;; Jessie Hildebrandt's
;; Run-Anywhere Emacs Config ;; Run-Anywhere Emacs Config
;; ;;
;; This configuration file was designed to work with Emacs 27, but should work
;; with Emacs 26.
;;
;; Generic keybinds are documented at the top of the "Key Bindings" subsection,
;; and package-specific keybinds are documented above each "use-package" statement
;; in the "EXTERNAL PACKAGES" section.
;;
;;================================================================================ ;;================================================================================
;;; Code:
;;======================================== ;;========================================
;; ;;
@ -338,7 +348,6 @@
(concat user-emacs-directory "init.elc")) (concat user-emacs-directory "init.elc"))
(add-hook 'emacs-startup-hook 'init-file/byte-compile-init-file)) (add-hook 'emacs-startup-hook 'init-file/byte-compile-init-file))
;;======================================== ;;========================================
;; ;;
;; THEME CONFIGURATION ;; THEME CONFIGURATION
@ -380,7 +389,6 @@
:config :config
(mood-line-mode)) (mood-line-mode))
;;======================================== ;;========================================
;; ;;
;; EXTERNAL PACKAGE CONFIGURATION ;; EXTERNAL PACKAGE CONFIGURATION
@ -794,7 +802,6 @@
(("<remap> <query-replace>" . 'anzu-query-replace) (("<remap> <query-replace>" . 'anzu-query-replace)
("<remap> <query-replace-regexp>" . 'anzu-query-replace-regexp))) ("<remap> <query-replace-regexp>" . 'anzu-query-replace-regexp)))
;;======================================== ;;========================================
;; ;;
;; END OF INIT FILE ;; END OF INIT FILE