summary refs log tree commit diff
path: root/emacs.d/config/config-package.el
diff options
context:
space:
mode:
Diffstat (limited to 'emacs.d/config/config-package.el')
-rw-r--r--emacs.d/config/config-package.el22
1 files changed, 0 insertions, 22 deletions
diff --git a/emacs.d/config/config-package.el b/emacs.d/config/config-package.el
deleted file mode 100644
index 1b7c6f0..0000000
--- a/emacs.d/config/config-package.el
+++ /dev/null
@@ -1,22 +0,0 @@
-;; where to store the packages
-(setq package-user-dir fcuny-path-emacs-elpa)
-
-(require 'package)
-(add-to-list 'package-archives '("melpa" . "http://melpa.org/packages/") t)
-
-;; initialize it
-(package-initialize)
-
-;; paradox is a better interface
-(when (not (package-installed-p 'paradox))
-  (package-install 'paradox))
-
-(setq paradox-github-token t)
-
-(paradox-require 'use-package)
-
-(require 'use-package)
-
-(setq use-package-always-ensure t)
-
-(provide 'config-package)