diff options
Diffstat (limited to 'config/packages.el')
-rw-r--r-- | config/packages.el | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/config/packages.el b/config/packages.el new file mode 100644 index 0000000..b4302cf --- /dev/null +++ b/config/packages.el @@ -0,0 +1,17 @@ +;; -*- lexical-binding: t; -*- + +(require 'package) + + +(add-to-list 'package-archives '("melpa" . "https://melpa.org/packages/") t) + +;; Comment/uncomment this line to enable MELPA Stable if desired. See `package-archive-priorities` +;; and `package-pinned-packages`. Most users will not need or want to do this. +;; (add-to-list 'package-archives '("melpa-stable" . "https://stable.melpa.org/packages/") t) + +(package-initialize) + +(require 'use-package) + +(use-package solarized-theme :ensure t) +(use-package ag :ensure t) |