forked from technomancy/emacs-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a9e12ca
commit 77e270b
Showing
7 changed files
with
43 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,30 @@ | ||
;;; starter-kit-elpa.el --- | ||
;;; starter-kit-elpa.el --- Install a base set of packages automatically. | ||
;; | ||
;; Part of the Emacs Starter Kit | ||
|
||
(defvar starter-kit-packages '("idle-highlight" | ||
"ruby-mode" | ||
"inf-ruby" | ||
"js2-mode" | ||
"css-mode" | ||
"ert" | ||
;; To submit: | ||
;;; "clojure-mode" | ||
;;; "cheat" | ||
;;; "gist" | ||
;;; "lisppaste" | ||
;;; "magit" | ||
;;; "yaml" | ||
;;; "paredit" | ||
;;; "html-fontify" | ||
;;; "color-theme" | ||
;;; "color-theme-zenburn" | ||
;;; "color-theme-vivid-chalk" | ||
;; Complicated ones: | ||
;;; "nxhtml" | ||
;;; "rinari" | ||
;;; "jabber" | ||
;;; "slime" | ||
;;; "swank-clojure" | ||
) | ||
"Libraries that should be installed by default.") |