1
0
Fork 0

fix: latexindent not working

This commit is contained in:
Kim, Jimin 2024-04-26 21:46:10 +09:00
parent 4b6daac76d
commit 4176b2b721
Signed by: pomp
GPG key ID: 2B516173EDD492EB
3 changed files with 15 additions and 0 deletions

View file

@ -33,6 +33,7 @@
"chsh",
"Configurator",
"coolbear",
"cpan",
"cpptools",
"damildrizzy",
"davinci",

View file

@ -75,3 +75,11 @@ eval "$(atuin init zsh)"
# https://github.com/junegunn/fzf
eval "$(fzf --zsh)"
#endregion fzf
#region perl
PATH="$HOME/perl5/bin${PATH:+:${PATH}}"; export PATH;
PERL5LIB="$HOME/perl5/lib/perl5${PERL5LIB:+:${PERL5LIB}}"; export PERL5LIB;
PERL_LOCAL_LIB_ROOT="$HOME/perl5${PERL_LOCAL_LIB_ROOT:+:${PERL_LOCAL_LIB_ROOT}}"; export PERL_LOCAL_LIB_ROOT;
PERL_MB_OPT="--install_base \"$HOME/perl5\""; export PERL_MB_OPT;
PERL_MM_OPT="INSTALL_BASE=$HOME/perl5"; export PERL_MM_OPT;
#endregion perl

View file

@ -8,6 +8,12 @@ func init() {
Desc: "LaTeX document for true scholar",
Setup: func() {
wrapper.ParuOnce("texlive-meta")
// https://github.com/Glavin001/atom-beautify/issues/1792#issuecomment-327071117
wrapper.Run("sudo", "cpan", "Unicode::GCString")
wrapper.Run("sudo", "cpan", "App::cpanminus")
wrapper.Run("sudo", "cpan", "YAML::Tiny")
wrapper.Run("sudo", "perl", "-MCPAN", "-e", "install \"File::HomeDir\"")
},
})
}