- Adds the auto-minor-mode package to replace our in-house implementation. - Merges associate! into the def-project-mode! macro because associate! on its own is less useful than auto-minor-mode-alist, auto-minor-mode-magic-alist or hooks. - Changes the semantics of :modes and :add-hooks properties of def-project-mode!. Its arguments are evaluated as is; lists will need to be quoted. squash! core-lib: remove associate! macro
47 lines
1 KiB
EmacsLisp
47 lines
1 KiB
EmacsLisp
;; -*- no-byte-compile: t; -*-
|
|
;;; core/packages.el
|
|
|
|
;; core.el
|
|
(package! dotenv-mode)
|
|
(package! auto-minor-mode)
|
|
|
|
;; core-ui.el
|
|
(package! all-the-icons)
|
|
(package! hide-mode-line)
|
|
(package! highlight-numbers)
|
|
(unless (locate-library "display-line-numbers")
|
|
(package! nlinum)
|
|
(package! nlinum-hl)
|
|
(package! nlinum-relative))
|
|
(package! rainbow-delimiters)
|
|
(package! restart-emacs)
|
|
|
|
;; core-editor.el
|
|
(package! better-jumper)
|
|
(package! command-log-mode)
|
|
(package! dtrt-indent)
|
|
(package! helpful)
|
|
(package! ns-auto-titlebar :ignore (not IS-MAC))
|
|
(package! pcre2el)
|
|
(package! smartparens)
|
|
(package! so-long
|
|
:built-in 'prefer
|
|
:recipe (:repo "https://git.savannah.gnu.org/git/so-long.git"))
|
|
(package! osx-clipboard :ignore (not IS-MAC))
|
|
(package! undo-tree)
|
|
(package! ws-butler)
|
|
(package! xclip :ignore IS-LINUX)
|
|
|
|
;; core-projects.el
|
|
(package! projectile)
|
|
|
|
;; core-keybinds.el
|
|
(package! general)
|
|
(package! which-key)
|
|
(package! hydra)
|
|
|
|
;; core-packages.el
|
|
(package! gnu-elpa-keyring-update)
|
|
|
|
;; autoload/debug.el
|
|
(package! esup)
|