Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 
 
 

26 rindas
846 B

  1. ;;-*-mode: emacs-lisp; coding: utf-8;-*-
  2. ;; Shamelesly copied from https://github.com/correl/dotfiles
  3. ;; Bootstrap us into being able to use org for the initialization file.
  4. (require 'package)
  5. (package-initialize)
  6. (add-to-list 'package-archives '("org" . "http://orgmode.org/elpa/") t)
  7. (add-to-list 'package-archives '("melpa" . "http://melpa.org/packages/") t)
  8. (add-to-list 'package-archives '("marmalade" . "http://marmalade-repo.org/packages/") t)
  9. ;; Install use-package for later use and to install org mode.
  10. (unless (package-installed-p 'use-package)
  11. (progn
  12. (package-refresh-contents)
  13. (package-install 'use-package)
  14. (package-initialize)))
  15. (require 'use-package)
  16. ;; Somewhat needed so we can use org to manage things.
  17. (use-package org
  18. :ensure org-plus-contrib)
  19. (require 'org)
  20. (org-babel-load-file "~/.emacs.d/emacs.org")