(require 'package) (setq package-enable-at-startup nil) (add-to-list 'package-archives '("melpa" . "https://melpa.org/packages/") t) (package-initialize) (unless (package-installed-p 'use-package) (package-refresh-contents) (package-install 'use-package)) (setq elchemy/elchemy-root "~/.elchemy/") (add-to-list 'load-path elchemy/elchemy-root) (require 'elchemy-boilerplate) (require 'elchemy-user) (require 'elchemy-util) (require 'elchemy-packages) (require 'elchemy-functions) (require 'elchemy-keys) (require 'elchemy-hooks) (toggle-frame-maximized) (require 'elchemy-personal) (custom-set-faces ;; custom-set-faces was added by Custom. ;; If you edit it by hand, you could mess it up, so be careful. ;; Your init file should contain only one such instance. ;; If there is more than one, they won't work right. '(mode-line ((t (:height 1.1)))) '(org-document-title ((t (:height 2.0 :underline nil)))) '(org-level-1 ((t (:inherit outline-1 :extend nil :weight extra-bold :height 1.4)))) '(org-level-2 ((t (:inherit outline-2 :extend nil :slant italic :weight bold :height 1.2)))) '(org-level-3 ((t (:inherit outline-3 :extend nil :weight semi-bold)))))