Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 667 Bytes

org-template.org

File metadata and controls

26 lines (18 loc) · 667 Bytes

Emacs Init

Emacs Init as an Org file

My Emacs setup

Lets make this organized and documented org-mode style

init-basics

Here lets do the preliminary setup and put in some good defaults for emacs, including setting some system wide variables.

init-aesthetics

Lets make emacs look and behave better.

(line-number-mode t)
(column-number-mode t)
;; http://ergoemacs.org/emacs/elisp_determine_OS_version.html
(if (version< emacs-version "26.1")
    (global-linum-mode t)
  ;; https://github.crookster.org/macOS-Emacs-26-display-line-numbers-and-me/
  (global-display-line-numbers-mode 1))