doom-emacs/core/packages.el

49 lines
1 KiB
EmacsLisp
Raw Normal View History

2017-02-11 05:46:42 +00:00
;; -*- no-byte-compile: t; -*-
;;; core/packages.el
;; core packages
(package! async)
(package! s)
(package! f)
2017-02-11 05:46:42 +00:00
2017-02-19 12:02:03 +00:00
;; core-os.el
2017-06-05 12:21:52 +00:00
;; In case this config is shared across multiple computers (like mine is), let's
;; protect these from autoremoval.
(package! exec-path-from-shell :ignore (not IS-MAC))
(package! osx-clipboard :ignore (not IS-MAC))
2017-02-19 12:02:03 +00:00
2017-02-11 05:46:42 +00:00
;; core-ui.el
2017-06-08 23:48:29 +00:00
(package! all-the-icons)
2017-06-07 12:32:34 +00:00
(package! fringe-helper)
(package! highlight-indentation)
(package! highlight-numbers)
(package! nlinum)
2017-06-14 10:14:34 +00:00
(package! nlinum-hl)
(package! rainbow-delimiters)
2017-05-13 22:20:00 +00:00
(package! vi-tilde-fringe)
2017-03-07 00:06:59 +00:00
(package! visual-fill-column)
2017-02-11 05:46:42 +00:00
;; core-popups.el
(package! shackle)
2017-02-11 05:46:42 +00:00
;; core-editor.el
(package! editorconfig)
(package! smartparens)
(package! ace-link)
(package! ace-window)
(package! avy)
(package! command-log-mode)
(package! expand-region)
(package! help-fns+)
(package! imenu-anywhere)
(package! imenu-list)
(package! pcre2el)
(package! smart-forward)
(package! wgrep)
2017-02-11 05:46:42 +00:00
;; core-projects.el
(package! projectile)
2017-02-19 12:03:05 +00:00
;; core-keybinds.el
(package! which-key)