summary refs log tree commit diff stats
path: root/emacs/elisp/el-get-setup.el
diff options
context:
space:
mode:
Diffstat (limited to 'emacs/elisp/el-get-setup.el')
-rw-r--r--emacs/elisp/el-get-setup.el29
1 files changed, 1 insertions, 28 deletions
diff --git a/emacs/elisp/el-get-setup.el b/emacs/elisp/el-get-setup.el
index bd880db..53f3a46 100644
--- a/emacs/elisp/el-get-setup.el
+++ b/emacs/elisp/el-get-setup.el
@@ -1,27 +1,11 @@
-(package-initialize)
-
 (setq
- el-get-sources '(
-                  (:name use-package
-                         :type github
-                         :pkgname "jwiegley/use-package")
-                  (:name packed
-                         :type github
-                         :pkgname "tarsius/packed")
-                  (:name auto-compile
-                         :type github
-                         :depends packed
-                         :pkgname "tarsius/auto-compile")
-                  (:name project-persist
-                         :type github
-                         :pkgname "rdallasgray/project-persist"))
-
  eg:basic-packages
  '(
    auto-compile
    auto-indent-mode
    autopair
    ace-jump-mode
+   bind-key
    company
    dired+
    diminish
@@ -54,14 +38,3 @@
 
  eg:cygwin-packages
  '(windows-path))
-
-(el-get-elpa-build-local-recipes)
-
-(el-get 'sync eg:basic-packages)
-
-(cond ((eq system-type 'cygwin)
-       (el-get 'sync eg:cygwin-packages)
-       (el-get 'sync eg:windows-packages))
-
-      ((eq system-type 'windows-nt)
-       (el-get 'sync eg:windows-packages)))