diff options
author | Sam Light <samlight1994@gmail.com> | 2025-05-17 20:17:44 +0100 |
---|---|---|
committer | Sam Light <samlight1994@gmail.com> | 2025-05-17 20:17:44 +0100 |
commit | 0b48b7d84872ea328ff942d2a2f786efc3319e82 (patch) | |
tree | 1d83b715d124d0a812df6669ac8e8ee4a27a5d26 /config/packages.el |
Inital commit
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) |