setting.json
{ "julia.executablePath": "C:\\Users\\hope\\AppData\\Local\\Programs\\Julia-1.6.2\\bin\\julia.exe", "workbench.colorTheme": "Default Dark+", "terminal.integrated.commandsToSkipShell": [ "language-julia.interrupt" ], "julia.symbolCacheDownload": true, "julia.enableTelemetry": true, "latex-workshop.view.pdf.viewer": "tab", "workbench.iconTheme": "vscode-icons" } { //--------------------------- Language ---------------------------- "[tex]": { "editor.suggest.snippetsPreventQuickSuggestions": false, "editor.tabSize": 2 }, "[latex]": { "editor.suggest.snippetsPreventQuickSuggestions": false, "editor.tabSize": 2 }, "[bibtex]": { "editor.tabSize": 2 }, //------------------------ LaTeX Workshop ------------------------- "latex-workshop.intellisense.package.enabled": true, "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" ], "latex-workshop.latex.outDir": "temp", "latex-workshop.latex.recipes": [ { "name": "latexmk", "tools": [ "latexmk" ] }, ], "latex-workshop.latex.tools": [ { "name": "latexmk", "command": "latexmk", "args": [ "-silent", "-outdir=%OUTDIR%", "%DOC%" ], }, ], // "latex-workshop.latex.toolchain":[{ // "command": "ptex2pdf", // "args":[ // "-l", // "-ot", // "-kanji=utf8 -synctex=1", // "%DOC%" // ] // }] , "latex-workshop.chktex.enabled": false, "fortran-ls.executablePath": "C:\\Users\\tfujino\\AppData\\Local\\Programs\\Python\\Python310\\Scripts\\fortls.exe", "fortran.symbols": [ "function", "subroutine" ], "[fortran_fixed-form]": { "editor.tabSize": 2, "editor.detectIndentation": false, "editor.rulers": [6,72], }, "workbench.colorCustomizations": { "editorRuler.foreground": "#c0c0c0" }, "fortran.gfortranExecutable": "C:\\TDM-GCC-64\\bin\\gfortran.exe", "diffEditor.maxComputationTime": 0, "latex-workshop.view.pdf.viewer": "tab", "bracket-pair-colorizer-2.forceIterationColorCycle": false, "bracketPairColorizer.forceIterationColorCycle": true, "editor.tokenColorCustomizations": { "functions": { "foreground": "", "fontStyle": "underline" }, "textMateRules": [ { "scope": [ //"keyword.operator.assignment", //"keyword.operator.logical", //"keyword.other", //"keyword.operator.new", //"keyword.operator.arithmetic" //"punctuation.separator", "keyword.operator" ], "settings": { "foreground": "#e7ff5f" } }, { "scope":[ "variable.parameter" ], "settings": { "fontStyle": "bold" } }, ] }, "files.associations": { "*.h": "fortran_fixed-form" }, "bracketPairColorizer.timeOut": 0, "bracketPairColorizer.consecutivePairColors": [ "()", "[]", "{}", [ "Gold", "Orchid", "LightSkyBlue" ], "Red" ], "vsicons.dontShowNewVersionMessage": true, "diffEditor.ignoreTrimWhitespace": false, "BracketHighlighter.enableExtension": true, "BracketHighlighter.customSymbols":[ { "open":"do ", "close":"end do" }, { "open":"if(", "close":"end if" }, { "open":"if(", "close":"else" } ], "[FortranFreeForm]": { "editor.matchBrackets": "always", }, "workbench.editorAssociations": { "*.ipynb": "jupyter.notebook.ipynb" }, "security.workspace.trust.untrustedFiles": "open", "security.workspace.trust.emptyWindow": false, "security.workspace.trust.startupPrompt": "never", "security.workspace.trust.enabled": false, }

0 コメント