Skip to content

Commit

Permalink
Merge pull request #2 from ShuN6211/detail-readme
Browse files Browse the repository at this point in the history
latexindentに関して追記
  • Loading branch information
ShuN6211 authored Aug 12, 2023
2 parents 85d1275 + 588395c commit 03195f1
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,20 @@
"editor.wordWrapColumn": 80,
},
// -------------------- latex-workshop --------------------
// for build
// intellisense
"latex-workshop.intellisense.package.enabled": true,
// viewer
"latex-workshop.view.pdf.viewer": "tab",
"latex-workshop.view.pdf.zoom": "page-width",
// format and lint
"latex-workshop.latexindent.path": "/opt/homebrew/bin/latexindent",
"latex-workshop.linting.chktex.enabled": true,
"latex-workshop.linting.lacheck.enabled": true,
// build
"latex-workshop.latex.outDir": "./out",
"latex-workshop.latex.autoBuild.run": "never",
"latex-workshop.latex.autoClean.run": "onBuilt",
// tools
"latex-workshop.latex.tools": [
{
"name": "lualatexmk",
Expand Down Expand Up @@ -59,6 +65,7 @@
"env": {}
},
],
// recipes
"latex-workshop.latex.recipes": [
{
"name": "latexmk (lualatex)",
Expand Down
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,9 @@ This repo provide my latex document template files and settings working on
```shell
brew install latexindent
```

- The path to the above `latexindent` installed via homebrew is configured in settings.json.

```json
"latex-workshop.latexindent.path": "/opt/homebrew/bin/latexindent",
```

0 comments on commit 03195f1

Please sign in to comment.