Permalink
Cannot retrieve contributors at this time
Fetching contributors…
| ;;; emacs --- My `init.el' file | |
| ;; | |
| ;; Copyright (C) 2015 Brunno dos Santos <emacs at brunno dot me> | |
| ;; | |
| ;; Author: Brunno dos Santos @squiter | |
| ;; URL: http://github.com/squiter/emacs-dotfiles | |
| ;; | |
| ;; This file is NOT part of GNU Emacs. | |
| ;; | |
| ;; This program is free software: you can redistribute it and/or modify | |
| ;; it under the terms of the GNU General Public License as published by | |
| ;; the Free Software Foundation, either version 3 of the License, or | |
| ;; (at your option) any later version. | |
| ;; | |
| ;; This program is distributed in the hope that it will be useful, | |
| ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| ;; GNU General Public License for more details. | |
| ;; | |
| ;; See <http://www.gnu.org/licenses/> for a copy of the GNU General | |
| ;; Public License. | |
| ;; | |
| ;;; Commentary: | |
| ;; | |
| ;; This files sets how to load my Emacs environment. | |
| ;;; Code: | |
| ;; Local Variables: | |
| ;; mode: emacs-lisp | |
| ;; End: | |
| ;; Added by Package.el. This must come before configurations of | |
| ;; installed packages. Don't delete this line. If you don't want it, | |
| ;; just comment it out by adding a semicolon to the start of the line. | |
| ;; You may delete these explanatory comments. | |
| (package-initialize) | |
| (add-to-list 'load-path (expand-file-name "conf" user-emacs-directory)) | |
| (setq rr/initialization-errors nil) | |
| (require 'init-bootstrap) | |
| (rr/safe-load-init-files) | |
| ;; Finish! | |
| (message "======================================") | |
| (message (if rr/initialization-errors | |
| (mapconcat #'identity rr/initialization-errors "\n") | |
| "All is sane, and init.el got to its end")) | |
| (message "======================================") | |
| ;;; emacs file ends here |