2024-04-17 12:46:12 +01:00
|
|
|
;;; install.el -- Handle installing selected packages -*- lexical-binding: t -*-
|
|
|
|
;;; Commentary:
|
|
|
|
;;; Code:
|
2024-04-17 12:54:51 +01:00
|
|
|
;; Configure packages archives with priority
|
2024-04-17 12:59:32 +01:00
|
|
|
(load-file "package-config.el")
|
2024-04-17 12:50:45 +01:00
|
|
|
(package-refresh-contents)
|
2024-04-17 12:49:35 +01:00
|
|
|
(setopt package-selected-packages
|
|
|
|
'(
|
|
|
|
;; Theme
|
|
|
|
catppuccin-theme
|
|
|
|
;; UI
|
|
|
|
all-the-icons nerd-icons nerd-icons-completion nerd-icons-corfu nerd-icons-dired nerd-icons-ibuffer doom-modeline diminish ligature page-break-lines helpful which-key link-hint diff-hl
|
|
|
|
;; Completion
|
|
|
|
cape consult consult-eglot consult-flyspell corfu corfu-terminal embark embark-consult marginalia orderless vertico
|
|
|
|
;; Snippets
|
|
|
|
tempel tempel-collection
|
|
|
|
;; spell-checking
|
|
|
|
flyspell-correct
|
|
|
|
;; password-store
|
|
|
|
pass password-store password-store-otp
|
|
|
|
;; IDE
|
2024-04-26 10:51:56 +01:00
|
|
|
treesit-auto flymake-popon flymake-collection flymake-ruff flymake-eslint flymake-shellcheck apheleia direnv rainbow-delimiters aggressive-indent nix-mode python-docstring
|
2024-04-17 12:49:35 +01:00
|
|
|
;; Media
|
|
|
|
emms
|
|
|
|
;; org-mode
|
|
|
|
org-roam org-noter org-journal
|
|
|
|
;; org-cite
|
|
|
|
citar citar-embark
|
|
|
|
;; org-plot
|
|
|
|
gnuplot
|
2024-04-26 10:51:56 +01:00
|
|
|
;; org-mode HTML export
|
|
|
|
htmlize
|
2024-04-17 12:49:35 +01:00
|
|
|
;; Projects
|
|
|
|
ibuffer-project magit forge
|
|
|
|
;; Writing
|
|
|
|
markdown-mode pandoc-mode auctex auctex-latexmk latex-preview-pane
|
|
|
|
;; Email
|
|
|
|
mu4e
|
2024-04-24 13:28:09 +01:00
|
|
|
;; RSS feeds
|
|
|
|
elfeed elfeed-org
|
2024-04-17 12:49:35 +01:00
|
|
|
))
|
2024-04-17 12:46:12 +01:00
|
|
|
(package-install-selected-packages)
|
|
|
|
(package-autoremove)
|
|
|
|
(provide 'install)
|
|
|
|
;;; install.el ends here
|