From 8b2754412586151f7bd2e05904755f40efb5dc5b Mon Sep 17 00:00:00 2001 From: afranco Date: Wed, 26 Oct 2022 12:42:12 +0100 Subject: [PATCH] chore: Changed HS to LHS (needs to be revisited in the future) and removed default bindings --- .config/xmonad/.latexmkrc | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 .config/xmonad/.latexmkrc diff --git a/.config/xmonad/.latexmkrc b/.config/xmonad/.latexmkrc deleted file mode 100644 index 9196904..0000000 --- a/.config/xmonad/.latexmkrc +++ /dev/null @@ -1,14 +0,0 @@ -# Use subroutine to do preprocessing and running pdflatex -$pdflatex = 'internal mylatex %B %O'; -sub mylatex { - my $base = shift @_; - my $tex = "$base.tex"; - - # Run the preprocessor - system('lhs2TeX', '--poly', '-o', $tex, "$base.lhs") == 0 or return $?; - # Run pdflatex - my $return = system('pdflatex','-output-directory','./LaTeX-build', @_, $tex); - system "echo INPUT $base.lhs >> $aux_dir1$base.fls"; - return $return; -} -