emacs/install.el
Evie Litherland-Smith 371a5c4c2c Customise use-package behaviour
use-package check for package before init, enable imenu support
2024-07-01 10:13:56 +01:00

110 lines
2.1 KiB
EmacsLisp

;;; install.el -- Handle installing selected packages -*- lexical-binding: t -*-
;;; Commentary:
;;; Code:
;; Configure packages archives with priority
(load-file "lib/package-config.el")
(package-refresh-contents)
(setopt package-selected-packages
'(
;; Theme
base16-theme
;; UI
all-the-icons
nerd-icons
nerd-icons-completion
nerd-icons-corfu
nerd-icons-dired
nerd-icons-ibuffer
diminish
ligature
page-break-lines
helpful
which-key
ace-window
link-hint
diff-hl
;; Completion
cape
consult
consult-eglot
consult-flyspell
corfu
corfu-terminal
embark
embark-consult
marginalia
orderless
vertico
;; Templates
tempel
license-templates
gitignore-templates
;; spell-checking
flyspell-correct
;; password-store
pass
password-store
;; IDE
treesit-auto
flymake-popon
flymake-shellcheck
flymake-yamllint
flymake-eslint
apheleia
envrc
rainbow-delimiters
aggressive-indent
python-docstring
nix-mode
lua-mode
;; Media
emms
;; org-mode
org-roam
org-noter
org-journal
;; org-cite
citar
citar-embark
;; org-mode HTML export
htmlize
;; Projects
ibuffer-project
magit
forge
treemacs
treemacs-nerd-icons
;; Writing
markdown-mode
pandoc-mode
auctex
auctex-latexmk
latex-preview-pane
;; Contacts
bbdb
mu4e
ement
;; RSS feeds
elfeed
elfeed-org
elfeed-tube
))
(package-install-selected-packages)
(package-autoremove)
(provide 'install)
;;; install.el ends here