Created
September 15, 2020 14:19
-
-
Save thecjharries/9449517846e4fcad79f2a2374040d589 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"terminal.integrated.shell.linux": "/bin/zsh", | |
"terminal.external.linuxExec": "/usr/bin/terminator", | |
"terminal.integrated.fontFamily": "DroidSansMono Nerd Font", | |
"editor.fontLigatures": true, | |
"editor.fontFamily": "Fira Code", | |
"markdown.extension.toc.omittedFromToc": { | |
// Use a path relative to your workspace. | |
"README.md": [ | |
"# *" | |
] | |
}, | |
"latex-workshop.latex.tools": [ | |
{ | |
"name": "latexmk", | |
"command": "latexmk", | |
"args": [ | |
"-shell-escape", | |
"-synctex=1", | |
"-interaction=nonstopmode", | |
"-file-line-error", | |
"-pdf", | |
"-outdir=%OUTDIR%", | |
"%DOC%" | |
], | |
"env": {} | |
}, | |
{ | |
"name": "lualatexmk", | |
"command": "latexmk", | |
"args": [ | |
"-synctex=1", | |
"-interaction=nonstopmode", | |
"-file-line-error", | |
"-lualatex", | |
"-outdir=%OUTDIR%", | |
"%DOC%" | |
], | |
"env": {} | |
}, | |
{ | |
"name": "latexmk_rconly", | |
"command": "latexmk", | |
"args": [ | |
"%DOC%" | |
], | |
"env": {} | |
}, | |
{ | |
"name": "pdflatex", | |
"command": "pdflatex", | |
"args": [ | |
"-synctex=1", | |
"-interaction=nonstopmode", | |
"-file-line-error", | |
"%DOC%" | |
], | |
"env": {} | |
}, | |
{ | |
"name": "bibtex", | |
"command": "bibtex", | |
"args": [ | |
"%DOCFILE%" | |
], | |
"env": {} | |
}, | |
{ | |
"name": "rnw2tex", | |
"command": "Rscript", | |
"args": [ | |
"-e", | |
"knitr::opts_knit$set(concordance = TRUE); knitr::knit('%DOCFILE_EXT%')" | |
], | |
"env": {} | |
} | |
], | |
"JSON-zain.json.parsing": true, | |
"emeraldwalk.runonsave": { | |
"commands": [ | |
{ | |
"match": ".tf", | |
"cmd": "terraform fmt ${file}" | |
}, | |
{ | |
"match": ".hcl", | |
"cmd": "hclfmt -w ${file}" | |
}, | |
] | |
}, | |
"terraform.languageServer": { | |
"external": true, | |
"pathToBinary": "/home/cjharries/.local/bin/terraform-ls", | |
"args": [ | |
"serve" | |
], | |
"maxNumberOfProblems": 100, | |
"trace.server": "off" | |
}, | |
"window.zoomLevel": 0 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment