nixos/home/emacs/default.nix

188 lines
3.6 KiB
Nix
Raw Normal View History

2024-01-30 14:21:50 +00:00
{
config,
pkgs,
...
}: {
programs.emacs = {
2023-12-11 12:11:55 +00:00
# Clone emacs config from https://git.xenia.me.uk/xenia/emacs.git
enable = true;
package = pkgs.emacs29-pgtk;
extraConfig = with builtins;
with config; let
font = "${stylix.fonts.monospace.name}-${toString stylix.fonts.sizes.applications}";
alpha = "${toString (floor (mul stylix.opacity.applications 100))}";
in ''
(org-babel-load-file "~/.emacs/README.org")
(add-to-list 'initial-frame-alist '(font . "${font}"))
(add-to-list 'default-frame-alist '(font . "${font}"))
(add-to-list 'initial-frame-alist '(alpha-background . ${alpha}))
(add-to-list 'default-frame-alist '(alpha-background . ${alpha}))
(scroll-bar-mode -1)
(tab-bar-mode -1)
'';
extraPackages = epkgs:
with epkgs; [
# theme
modus-themes
# spell-checking
flyspell-correct
consult-flyspell
2023-12-19 14:46:57 +00:00
# password-store
password-store
password-store-otp
pass # password-store major mode
# completion-packages
cape
consult
consult-eglot
consult-yasnippet
corfu
corfu-terminal
embark
embark-consult
marginalia
orderless
vertico
# snippets-packages
yasnippet
yasnippet-snippets
yasnippet-capf
# ide-packages
treesit-grammars.with-all-grammars
treesit-auto
2024-01-10 10:31:38 +00:00
flymake-popon
flymake-shellcheck
apheleia
direnv
rainbow-delimiters
aggressive-indent
nix-mode
lua-mode
cargo
# media-packages
emms
# org-packages
org-roam
2023-12-20 10:59:56 +00:00
org-alert
org-noter
org-journal
citar
citar-embark
2024-01-04 11:03:24 +00:00
gnuplot
# project-packages
2023-11-16 12:50:37 +00:00
ibuffer-project
magit
forge
# ui-packages
all-the-icons
nerd-icons
nerd-icons-completion
nerd-icons-corfu
nerd-icons-dired
nerd-icons-ibuffer
2024-01-09 09:02:48 +00:00
diminish
2023-11-07 07:06:30 +00:00
ligature
page-break-lines
helpful
which-key
link-hint
2023-12-08 15:15:21 +00:00
diff-hl
2024-02-03 08:10:23 +00:00
# Tree-Sitter packages
nushell-ts-mode
# writing-packages
markdown-mode
pandoc-mode
auctex
auctex-latexmk
latex-preview-pane
# email-packages
mu4e
# feed-packages
elfeed
elfeed-org
elfeed-tube
elfeed-tube-mpv
];
};
services.emacs = {
enable = true;
package = config.programs.emacs.finalPackage;
startWithUserSession = false;
defaultEditor = true;
client.enable = true;
socketActivation.enable = true;
};
home.packages = with pkgs; [
# Emacs requirements
fd
ripgrep
imagemagick
languagetool
wordnet
2024-01-30 14:21:50 +00:00
(aspellWithDicts (ds: with ds; [en en-computers en-science]))
# For org-plot
gnuplot
# For EMMS
mp3info
# Language-specific requirements
sqlite
pandoc
ghostscript
mupdf
poppler_utils
# Customised LaTeX install
# texlive.combined.scheme-full
(texlive.combine {
2024-01-30 14:21:50 +00:00
inherit
(pkgs.texlive)
scheme-basic
dvisvgm
dvipng
wrapfig
amsmath
ulem
hyperref
capt-of
2024-01-31 18:27:57 +00:00
beamer
2024-01-30 14:21:50 +00:00
;
})
# Linters
shellcheck
# Formatters
nodePackages.prettier
alejandra
ruff
isort
fprettify
rustfmt
stylua
shfmt
# LSP Servers
nil
fortls
rust-analyzer
luajitPackages.lua-lsp
python3Packages.jedi-language-server
];
}