Skip to content

Instantly share code, notes, and snippets.

@mkakh
Last active May 16, 2024 23:48
Show Gist options
  • Save mkakh/5a362d5096148685b20a3c14336bedf8 to your computer and use it in GitHub Desktop.
Save mkakh/5a362d5096148685b20a3c14336bedf8 to your computer and use it in GitHub Desktop.
{
"editor.fontFamily": "'Fira Code Medium', 'Droid Sans Mono', 'monospace', monospace",
"workbench.colorTheme": "Solarized Light",
"editor.inlineSuggest.enabled": true,
"asciidoc.pdf.asciidoctorPdfCommandPath": "asciidoctor-pdf -a scripts=cjk -a pdf-theme=default-for-print-with-fallback-font -r asciidoctor-diagram -r asciidoctor-mathematical",
"asciidoc.extensions.enableKroki": true,
"asciidoc.useWorkspaceRootAsBaseDirectory": true,
"editor.tabSize": 4,
"editor.insertSpaces": true,
"editor.suggest.snippetsPreventQuickSuggestions": false,
// 使用パッケージのコマンドや環境の補完を有効にする
"latex-workshop.intellisense.package.enabled": true,
// 生成ファイルを削除するときに対象とするファイル
// デフォルト値に "*.synctex.gz" を追加
"latex-workshop.latex.clean.fileTypes": [
"*.aux",
"*.bbl",
"*.blg",
"*.idx",
"*.ind",
"*.lof",
"*.lot",
"*.out",
"*.toc",
"*.acn",
"*.acr",
"*.alg",
"*.glg",
"*.glo",
"*.gls",
"*.ist",
"*.fls",
"*.log",
"*.fdb_latexmk",
"*.snm",
"*.nav",
"*.dvi",
"*.synctex.gz"
],
// 生成ファイルを "out" ディレクトリに吐き出す
"latex-workshop.latex.outDir": "out",
// ビルドのレシピ
"latex-workshop.latex.recipes": [
{
"name": "latexmk",
"tools": [
"latexmk"
]
},
],
// ビルドのレシピに使われるパーツ
"latex-workshop.latex.tools": [
{
"name": "latexmk",
"command": "latexmk",
"args": [
"-silent",
"-outdir=%OUTDIR%",
"%DOC%"
],
},
],
"editor.wordWrap": "on",
"editor.minimap.enabled": false,
"git.openRepositoryInParentFolders": "never",
"asciidoc.preview.scrollEditorWithPreview": false,
"editor.formatOnSave": true,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment