Pygments for code listings

This commit is contained in:
Valentin Brandl 2022-02-27 14:17:06 +01:00
parent b798424712
commit adc5bbdde5
2 changed files with 8 additions and 1 deletions

View File

@ -32,8 +32,12 @@ languagetool:
languagetool <(cat $(SRC) | ./scripts/detex.py) languagetool <(cat $(SRC) | ./scripts/detex.py)
.PHONY: clean .PHONY: clean
clean: clean_dot clean: clean_dot clean_tex
.PHONY: clean_tex
clean_tex:
latexmk -C latexmk -C
rm -rf ./_minted-report/
.PHONY: clean_dot .PHONY: clean_dot
clean_dot: clean_dot:

View File

@ -54,5 +54,8 @@ pkgs.mkShell {
pkgs.zathura pkgs.zathura
# dot # dot
pkgs.graphviz pkgs.graphviz
pkgs.pygmentex
pkgs.pythonPackages.pygments
]; ];
} }