├── README.org └── init.el /README.org: -------------------------------------------------------------------------------- 1 | #+title: MOMACS 2 | 3 | #+begin_quote 4 | Lightweight; Heavy opinions. 5 | #+end_quote 6 | 7 | * Installation 8 | #+begin_src emacs-lisp :lexical t 9 | git clone https://www.github.com/progfolio/momacs.git "$HOME"/.emacs.d 10 | #+end_src 11 | 12 | 13 | -------------------------------------------------------------------------------- /init.el: -------------------------------------------------------------------------------- 1 | ;;; init.el --- Less is MOMACS -*- lexical-binding: t; -*- 2 | (setq initial-buffer-choice (lambda () (help-with-tutorial) (get-buffer "TUTORIAL"))) 3 | ;;; init.el ends here 4 | --------------------------------------------------------------------------------