32 lines
1.3 KiB
EmacsLisp
32 lines
1.3 KiB
EmacsLisp
;;; my-packages.el -- Setup package.el archives and priorities -*- lexical-binding: t -*-
|
|
;;; Commentary:
|
|
;;; Code:
|
|
(use-package package
|
|
:custom
|
|
(package-archive-priorities '(("melpa" . 1) ("stable" . 2) ("nongnu" . 3) ("gnu" . 4)))
|
|
(package-selected-packages
|
|
'(;; Theme
|
|
base16-theme
|
|
;; UI
|
|
all-the-icons nerd-icons nerd-icons-completion nerd-icons-corfu nerd-icons-dired nerd-icons-ibuffer
|
|
minions ligature page-break-lines helpful which-key ace-window link-hint diff-hl
|
|
;; Completion
|
|
vertico orderless marginalia cape corfu corfu-terminal
|
|
consult consult-eglot consult-flyspell embark embark-consult
|
|
flyspell-correct tempel
|
|
;; IDE
|
|
treesit-auto magit forge flymake-popon flymake-shellcheck flymake-yamllint flymake-eslint
|
|
apheleia envrc rainbow-delimiters aggressive-indent python-docstring nix-mode lua-mode
|
|
;; Writing
|
|
org-roam org-noter citar citar-embark
|
|
markdown-mode pandoc-mode auctex htmlize
|
|
;; Other
|
|
password-store emms bbdb ement elfeed elfeed-org))
|
|
:config
|
|
(add-to-list 'package-archives '("melpa" . "https://melpa.org/packages/"))
|
|
(add-to-list 'package-archives '("stable" . "https://stable.melpa.org/packages/"))
|
|
(package-initialize))
|
|
|
|
(provide 'my-packages)
|
|
;;; my-packages.el ends here
|