doomemacs/core/packages.el

49 lines
1 KiB
EmacsLisp
Raw Normal View History

2017-02-11 00:46:42 -05:00
;; -*- no-byte-compile: t; -*-
;;; core/packages.el
;; core packages
(package! async)
(package! s)
(package! f)
2017-02-11 00:46:42 -05:00
2017-02-19 07:02:03 -05:00
;; core-os.el
2017-06-05 14:21:52 +02: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 07:02:03 -05:00
2017-02-11 00:46:42 -05:00
;; core-ui.el
2017-06-07 14:32:34 +02:00
(package! fringe-helper)
(package! highlight-indentation)
(package! highlight-numbers)
(package! nlinum)
2017-06-05 03:12:49 +02:00
(package! nlinum-hl)
(package! rainbow-delimiters)
2017-05-14 00:20:00 +02:00
(package! vi-tilde-fringe)
2017-03-06 19:06:59 -05:00
(package! visual-fill-column)
2017-02-11 00:46:42 -05:00
;; core-popups.el
(package! shackle)
2017-02-11 00:46:42 -05:00
;; core-editor.el
(package! editorconfig)
(package! smartparens)
(package! ace-link)
(package! ace-window)
(package! avy)
(package! command-log-mode)
(package! expand-region)
(package! goto-last-change)
(package! help-fns+)
(package! imenu-anywhere)
(package! imenu-list)
(package! pcre2el)
(package! smart-forward)
(package! wgrep)
2017-02-11 00:46:42 -05:00
;; core-projects.el
(package! projectile)
2017-02-19 07:03:05 -05:00
;; core-keybinds.el
(package! which-key)