doomemacs/core/packages.el
Henrik Lissner f43e64e505
Add ns-auto-titlebar package for MacOS
This fixes mismatching frame title and frame coloring, as well as
auto-sets the ns-appearance parameter depending on your theme.
2018-10-25 13:42:20 -04:00

49 lines
1 KiB
EmacsLisp

;; -*- no-byte-compile: t; -*-
;;; core/packages.el
;; core-os.el
(when IS-MAC
(package! exec-path-from-shell)
(package! osx-clipboard)
(package! ns-auto-titlebar))
;; core-ui.el
(package! all-the-icons)
(package! hide-mode-line)
(package! highlight-indentation)
(package! highlight-numbers)
(package! highlight-escape-sequences
:recipe (:fetcher github :repo "hlissner/highlight-escape-sequences"))
(unless (locate-library "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)
(package! ws-butler)
;; core-projects.el
(package! projectile)
;; core-keybinds.el
(package! which-key)
(package! hydra)
;; autoload/debug.el
(package! esup)
;; autoload/test.el
(package! buttercup)