Up.
This commit is contained in:
parent
341d92aeb7
commit
7101175810
@ -1,10 +1,10 @@
|
|||||||
{{ $email := promptStringOnce "What is your main git email address " "" }}
|
{{ $email := promptStringOnce . "email" "What is your main git email address " }}
|
||||||
{{ $signinkey := promptStringOnce "What is your git signing key " "" }}
|
{{ $signinkey := promptStringOnce . "signingkey" "What is your git signing key " }}
|
||||||
{{ $latex := promptBoolOnce "Do i install latex files " false }}
|
{{ $latex := promptBoolOnce . "hasLatex" "Do i install latex files " }}
|
||||||
[git]
|
[git]
|
||||||
autoCommit = true
|
autoCommit = true
|
||||||
autoPush = true
|
autoPush = true
|
||||||
[data]
|
[data]
|
||||||
email = {{ $email | quote }}
|
email = {{ $email | quote }}
|
||||||
signinkey = {{ $signinkey | quote }}
|
signinkey = {{ $signinkey | quote }}
|
||||||
latex = {{ $latex }}
|
hasLatex = {{ $hasLatex }}
|
||||||
|
@ -65,7 +65,7 @@
|
|||||||
url = "https://github.com/zimfw/zimfw/releases/latest/download/zimfw.zsh"
|
url = "https://github.com/zimfw/zimfw/releases/latest/download/zimfw.zsh"
|
||||||
refreshPeriod = "168h"
|
refreshPeriod = "168h"
|
||||||
|
|
||||||
{{- if ne .latex false }}
|
{{- if ne .hasLatex false }}
|
||||||
["texmf/tex/latex/latex-homework"]
|
["texmf/tex/latex/latex-homework"]
|
||||||
type = "git-repo"
|
type = "git-repo"
|
||||||
url = "https://git.jefflance.me/jeff/latex-homework.git"
|
url = "https://git.jefflance.me/jeff/latex-homework.git"
|
||||||
|
@ -16,7 +16,7 @@ TEXMFDIR=${HOME}/texmf/tex/latex
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
{{- if (ne .latex false) }}
|
{{- if (ne .hasLatex false) }}
|
||||||
log "Begin LaTeX repo initialization"
|
log "Begin LaTeX repo initialization"
|
||||||
|
|
||||||
texhash "${TEXMFDIR}"
|
texhash "${TEXMFDIR}"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user