doomemacs/core/packages.el
Henrik Lissner 7eb3ae62d7
Conditionally install os packages #741
Fixes an issue where exec-shell-from-path could not be installed on
Linux or Windows.

Doom used :ignore because, at the time, it supported a workflow where
your Emacs config was shared over dropbox or rslsync across multiple
computers. This workflow is no longer supported (it was very buggy!), so
this is no longer necessary. :ignore should also be reserved for private
use and not used internally.
2018-07-04 21:08:23 +02:00

46 lines
883 B
EmacsLisp

;; -*- no-byte-compile: t; -*-
;;; core/packages.el
;; core-os.el
(when IS-MAC
(package! exec-path-from-shell)
(package! osx-clipboard))
;; core-ui.el
(package! all-the-icons)
(package! hide-mode-line)
(package! highlight-indentation)
(package! highlight-numbers)
(unless (boundp 'display-line-numbers)
(package! nlinum)
(package! nlinum-hl)
(package! nlinum-relative))
(package! rainbow-delimiters)
(package! visual-fill-column)
(package! restart-emacs)
;; core-editor.el
(package! ace-link)
(package! ace-window)
(package! avy)
(package! command-log-mode)
(package! dtrt-indent)
(package! expand-region)
(package! helpful)
(package! pcre2el)
(package! smartparens)
(package! undo-tree)
;; core-projects.el
(package! projectile)
;; core-keybinds.el
(package! which-key)
(package! hydra)
;; autoload/debug.el
(package! esup)
;; autoload/test.el
(package! buttercup)