summaryrefslogtreecommitdiff
path: root/.emacs.d.back/core/rogs-packages.el
diff options
context:
space:
mode:
authorRoger Gonzalez <rogergonzalez21@gmail.com>2020-04-08 10:38:14 -0300
committerRoger Gonzalez <rogergonzalez21@gmail.com>2020-04-08 10:38:14 -0300
commit5f0f2f90361a4c0a76478b288998595fc3ddebd2 (patch)
treefba8d30e376187e1b0b441314497bb1a70989f08 /.emacs.d.back/core/rogs-packages.el
parent47e1414d1be0069b158d0d0718988d72b0fb5d0d (diff)
Added my old emacs config
Diffstat (limited to '.emacs.d.back/core/rogs-packages.el')
-rw-r--r--.emacs.d.back/core/rogs-packages.el20
1 files changed, 20 insertions, 0 deletions
diff --git a/.emacs.d.back/core/rogs-packages.el b/.emacs.d.back/core/rogs-packages.el
new file mode 100644
index 00000000..6a757a6a
--- /dev/null
+++ b/.emacs.d.back/core/rogs-packages.el
@@ -0,0 +1,20 @@
+;;; packages.el --- rogs default package selection
+;;
+;;; Commentary:
+;;
+;; It shows the complete list of installed packages and auto-installs them if they are missing
+;;
+;;; Code:
+
+(require 'package)
+
+(add-to-list 'package-archives '("melpa" . "http://melpa.org/packages/"))
+(add-to-list 'package-archives '("marmalade" . "http://marmalade-repo.org/packages/"))
+(add-to-list 'package-archives '("melpa-stable" . "https://stable.melpa.org/packages/") t)
+(when (< emacs-major-version 24)
+ ;; For important compatibility libraries like cl-lib
+ (add-to-list 'package-archives '("gnu" . "http://elpa.gnu.org/packages/")))
+(package-initialize)
+
+(provide 'rogs-packages)
+;;; rogs-packages.el ends here