Move external Emacs packages to separate file to make things easier to read
This commit is contained in:
parent
d952c2c791
commit
ca6997fb9a
|
@ -51,74 +51,14 @@
|
||||||
(load-theme '${custom-theme-name})
|
(load-theme '${custom-theme-name})
|
||||||
'';
|
'';
|
||||||
extraPackages = epkgs:
|
extraPackages = epkgs:
|
||||||
with epkgs; [
|
with epkgs;
|
||||||
|
[
|
||||||
# Tree-sitter grammars, not a real Emacs package
|
# Tree-sitter grammars, not a real Emacs package
|
||||||
treesit-grammars.with-all-grammars
|
treesit-grammars.with-all-grammars
|
||||||
# Maildir utils with linked Emacs package
|
# Maildir utils with linked Emacs package
|
||||||
mu4e
|
mu4e
|
||||||
# Theme
|
]
|
||||||
base16-theme
|
++ (import ./emacs-packages.nix epkgs);
|
||||||
# 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
|
|
||||||
];
|
|
||||||
};
|
};
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
# Emacs requirements
|
# Emacs requirements
|
||||||
|
|
65
home/emacs/emacs-packages.nix
Normal file
65
home/emacs/emacs-packages.nix
Normal file
|
@ -0,0 +1,65 @@
|
||||||
|
epkgs:
|
||||||
|
with epkgs; [
|
||||||
|
# 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
|
||||||
|
]
|
Loading…
Reference in a new issue