summaryrefslogtreecommitdiff
path: root/config/packages.el
blob: db51d7e06ddf8b15fb08a685b391edb6ffe3c41a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
;; -*- 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
  :config
  (load-theme 'solarized-dark :no-confirm))

(use-package ag :ensure t)