mirror of https://github.com/Flinner/dots.git
				
				
				
			
		
			
				
	
	
		
			18 lines
		
	
	
		
			632 B
		
	
	
	
		
			Perl
		
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			632 B
		
	
	
	
		
			Perl
		
	
	
	
# It is hard to grep logs with line breaks!
 | 
						|
$ENV{max_print_line} = $log_wrap = 1000;
 | 
						|
 | 
						|
$out_dir = '/tmp/tex';
 | 
						|
 | 
						|
$pdf_mode = 1;
 | 
						|
#$pdflatex =    'pdflatex -shell-escape -interaction=nonstopmode -synctex=1 %O %S;';
 | 
						|
$pdflatex =    'PATH="/opt/homebrew/opt/python@3.13/libexec/bin:$PATH" lualatex -shell-escape -interaction=nonstopmode -synctex=1 %O %S;';
 | 
						|
$pdflualatex = 'lualatex -shell-escape -interaction=nonstopmode -synctex=1 %O %S;';
 | 
						|
 | 
						|
# https://stackoverflow.com/questions/71868294/set-zathura-as-a-default-viewer-while-using-latexmk
 | 
						|
# $pdf_previewer = 'Evince';
 | 
						|
$pdf_previewer = 'zathura';
 | 
						|
 | 
						|
 | 
						|
$biber = '/usr/bin/vendor_perl/biber';
 | 
						|
 |