Emacs config utilizing prelude as a base
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

101 lines
3.3 KiB

14 years ago
14 years ago
14 years ago
  1. ;;; prelude-packages.el --- Emacs Prelude: default package selection.
  2. ;;
  3. ;; Copyright (c) 2011-2012 Bozhidar Batsov
  4. ;;
  5. ;; Author: Bozhidar Batsov <bozhidar@batsov.com>
  6. ;; URL: http://batsov.com/emacs-prelude
  7. ;; Version: 1.0.0
  8. ;; Keywords: convenience
  9. ;; This file is not part of GNU Emacs.
  10. ;;; Commentary:
  11. ;; Takes care of the automatic installation of all the packages required by
  12. ;; Emacs Prelude.
  13. ;;; License:
  14. ;; This program is free software; you can redistribute it and/or
  15. ;; modify it under the terms of the GNU General Public License
  16. ;; as published by the Free Software Foundation; either version 3
  17. ;; of the License, or (at your option) any later version.
  18. ;;
  19. ;; This program is distributed in the hope that it will be useful,
  20. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  21. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  22. ;; GNU General Public License for more details.
  23. ;;
  24. ;; You should have received a copy of the GNU General Public License
  25. ;; along with GNU Emacs; see the file COPYING. If not, write to the
  26. ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
  27. ;; Boston, MA 02110-1301, USA.
  28. ;;; Code:
  29. (require 'cl)
  30. (require 'package)
  31. (add-to-list 'package-archives
  32. '("melpa" . "http://melpa.milkbox.net/packages/") t)
  33. (package-initialize)
  34. (setq url-http-attempt-keepalives nil)
  35. (defvar prelude-packages
  36. '(ack-and-a-half expand-region gist helm helm-projectile magit magithub melpa
  37. rainbow-mode volatile-highlights yasnippet zenburn-theme)
  38. "A list of packages to ensure are installed at launch.")
  39. (defun prelude-packages-installed-p ()
  40. (loop for p in prelude-packages
  41. when (not (package-installed-p p)) do (return nil)
  42. finally (return t)))
  43. (defun prelude-install-packages ()
  44. (unless (prelude-packages-installed-p)
  45. ;; check for new packages (package versions)
  46. (message "%s" "Emacs Prelude is now refreshing its package database...")
  47. (package-refresh-contents)
  48. (message "%s" " done.")
  49. ;; install the missing packages
  50. (dolist (p prelude-packages)
  51. (unless (package-installed-p p)
  52. (package-install p)))))
  53. (prelude-install-packages)
  54. (defmacro prelude-auto-install (ext mode)
  55. `(add-to-list 'auto-mode-alist
  56. `(,ext . (lambda ()
  57. (package-install ',mode)
  58. (,mode)))))
  59. (defvar prelude-auto-install-alist
  60. '(("\\.markdown\\'" . markdown-mode)
  61. ("\\.md\\'" . markdown-mode)
  62. ("\\.haml\\'" . haml-mode)
  63. ("\\.scss\\'" . scss-mode)
  64. ("\\.sass\\'" . sass-mode)
  65. ("\\.groovy\\'" . groovy-mode)
  66. ("\\.yml\\'" . yaml-mode)
  67. ("\\.php\\'" . php-mode)
  68. ("\\.hs\\'" . haskell-mode)
  69. ("\\.less\\'" . less-css-mode)
  70. ("\\.lua\\'" . lua-mode)
  71. ("\\.coffee\\'" . coffee-mode)
  72. ("\\.erl\\'" . erlang-mode)
  73. ("\\.feature\\'" . feature-mode)))
  74. ;; markdown-mode doesn't have autoloads for the auto-mode-alist
  75. ;; so we add them manually if it's already installed
  76. (when (package-installed-p 'markdown-mode)
  77. (add-to-list 'auto-mode-alist '("\\.markdown\\'" . markdown-mode))
  78. (add-to-list 'auto-mode-alist '("\\.md\\'" . markdown-mode)))
  79. (dolist (entry prelude-auto-install-alist)
  80. (let ((ext (car entry))
  81. (mode (cdr entry)))
  82. (unless (package-installed-p mode)
  83. (prelude-auto-install ext mode))))
  84. (provide 'prelude-packages)
  85. ;;; prelude-packages.el ends here