my-emacs-d/init.el

29 lines
922 B
EmacsLisp
Raw Normal View History

;;; init --- Summary
;;; Commentary:
;;; Code:
(setq custom-file (concat user-emacs-directory "customizations.el"))
(load custom-file)
;; Initialize the package system and use-package
(setq load-prefer-newer t)
(require 'package)
(add-to-list 'package-archives
'("gnu" . "http://elpa.gnu.org/packages/"))
2016-11-07 13:46:53 +00:00
(add-to-list 'package-archives
'("melpa-stable" . "https://stable.melpa.org/packages/") t)
(add-to-list 'package-archives
'("melpa" . "https://melpa.org/packages/") t)
(add-to-list 'package-archives
'("marmalade" . "http://marmalade-repo.org/packages/") t)
2017-01-05 20:41:48 +00:00
(add-to-list 'package-archives
'("org" . "http://orgmode.org/elpa/") t)
2016-08-18 20:01:20 +00:00
(package-initialize)
2018-07-29 16:38:44 +00:00
;; I started moving my configuration to this Org file. Its easier to document this way.
(org-babel-load-file (expand-file-name "configuration.org" user-emacs-directory))
2016-09-15 14:08:54 +00:00
;;; init.el ends here