VScode使用全指南 (环境配置,插件推荐,美化) (C++,Python,LaTeX,R...) 您所在的位置:网站首页 python哪个编辑器好用 VScode使用全指南 (环境配置,插件推荐,美化) (C++,Python,LaTeX,R...)

VScode使用全指南 (环境配置,插件推荐,美化) (C++,Python,LaTeX,R...)

#VScode使用全指南 (环境配置,插件推荐,美化) (C++,Python,LaTeX,R...)| 来源: 网络整理| 查看: 265

{

"window.zoomLevel": 0, "python.formatting.provider": "yapf", "python.linting.flake8Args": ["--max-line-length=248"], "python.linting.pylintEnabled": false, "python.linting.pylintArgs": [ "--generate-members" ], "oneDarkPro.editorTheme": "Onedark Pro", "workbench.colorTheme": "One Dark Pro", "code-runner.preserveFocus": false, "code-runner.runInTerminal": true, "code-runner.saveFileBeforeRun": true, "editor.renderWhitespace": "all", "editor.renderControlCharacters": false, "http.proxySupport": "off", "editor.fontFamily": "'JetBrains Mono',Consolas, 'Courier New', monospace", "editor.suggestSelection": "first", "vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue", "[html]": {

}, "files.associations": {

"*.html": "html", "*.txt": "plaintext", "*.rmd": "markdown", "array": "cpp", "atomic": "cpp", "*.tcc": "cpp", "cctype": "cpp", "clocale": "cpp", "cmath": "cpp", "cstdarg": "cpp", "cstddef": "cpp", "cstdint": "cpp", "cstdio": "cpp", "cstdlib": "cpp", "cstring": "cpp", "cwchar": "cpp", "cwctype": "cpp", "deque": "cpp", "unordered_map": "cpp", "vector": "cpp", "exception": "cpp", "algorithm": "cpp", "memory": "cpp", "memory_resource": "cpp", "optional": "cpp", "string": "cpp", "string_view": "cpp", "system_error": "cpp", "tuple": "cpp", "type_traits": "cpp", "utility": "cpp", "fstream": "cpp", "initializer_list": "cpp", "iosfwd": "cpp", "iostream": "cpp", "istream": "cpp", "limits": "cpp", "new": "cpp", "ostream": "cpp", "sstream": "cpp", "stdexcept": "cpp", "streambuf": "cpp", "typeinfo": "cpp" }, "python.jediEnabled": false, "powermode.enabled": true, "powermode.comboTimeout": 1000, "powermode.comboThreshold": 3, "powermode.shakeIntensity": 0, "powermode.explosionOffset": 0.3, "tabout.disableByDefault": true, "background.useDefault": false, "background.customImages": [ "file:///C:vscodebg.png",//背景图片地址 "file:///C:vscodebg.png", "file:///C:vscodebg.png" //如果你很好奇为什么得重复三遍,读者自证(划掉)参见说明 ], "background.style":{

"content": "''", "pointer-events": "none", "position": "absolute", "right":"10px", "bottom":"0px",//-47px", "z-index": "99999", //熟悉css的同学肯定明白上面是什么意思。这个是不用改的。 "width": "100%",//背景图片缩放有多宽 "height": "100%",//背景图片缩放有多高 "background-repeat": "no-repeat",//这个也不用改 "opacity": 0.2//透明程度。其实普通的需求改这个就行了qwq }, "powermode.enableShake": false, "powermode.enableStatusBarComboCounter": false, "powermode.enableStatusBarComboTimer": false, "files.autoSave": "afterDelay", "polacode.target": "snippet", "workbench.iconTheme": "material-icon-theme", "sync.gist": "ac3709c566f85d9b6a44ff1dda335967",

//R Language config @ https://sspai.com/post/47386 //Pay Attention to config the tenminal //pip install -U radian

"r.rterm.windows": "C:\\Users\\tclkr\\AppData\\Local\\Programs\\Python\\Python37\\Scripts\\radian.exe", "r.rterm.option": [ // "--no-save", // "--no-restore", "--no-site-file" ], "r.rpath.lsp": "C:\\Program Files\\R\\R-3.6.2\\bin\\x64\\R.exe", "code-runner.executorMap": {

"javascript": "node", "java": "cd $dir && javac $fileName && java $fileNameWithoutExt", "c": "cd $dir && gcc $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt", "cpp": "cd $dir && g++ $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt", "objective-c": "cd $dir && gcc -framework Cocoa $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt", "php": "php", "python": "python -u", "perl": "perl", "perl6": "perl6", "ruby": "ruby", "go": "go run", "lua": "lua", "groovy": "groovy", "powershell": "powershell -ExecutionPolicy ByPass -File", "bat": "cmd /c", "shellscript": "bash", "fsharp": "fsi", "csharp": "scriptcs", "vbscript": "cscript //Nologo", "typescript": "ts-node", "coffeescript": "coffee", "scala": "scala", "swift": "swift", "julia": "julia", "crystal": "crystal", "ocaml": "ocaml",

"r": "Rscript",

// "r": "-join('source(','\"','$fileName','\"',')') | r.exe --no-save",

// "r": "-join('source(','\"','$fileName','\"',')') | radian.exe",

"applescript": "osascript", "clojure": "lein exec", "haxe": "haxe --cwd $dirWithoutTrailingSlash --run $fileNameWithoutExt", "rust": "cd $dir && rustc $fileName && $dir$fileNameWithoutExt", "racket": "racket", "scheme": "csi -script", "ahk": "autohotkey", "autoit": "autoit3", "dart": "dart", "pascal": "cd $dir && fpc $fileName && $dir$fileNameWithoutExt", "d": "cd $dir && dmd $fileName && $dir$fileNameWithoutExt", "haskell": "runhaskell", "nim": "nim compile --verbosity:0 --hints:off --run", "lisp": "sbcl --script", "kit": "kitc --run", "v": "v run", "sass": "sass --style expanded", "scss": "scss --style expa,nded" }, "r.linting.trailingWhitespace": false, "r.linting.trailingBlankLines": false, "r.linting.trueFalseNames": false, "r.lsp.debug": true, "editor.wordWrap": "on", //LaTeX config from CSDN "latex-workshop.latex.recipes": [ {

"name": "xelatex", "tools": [ "xelatex" ] }, {

"name": "xelatex -> bibtex -> xelatex*2", "tools": [ "xelatex", "bibtex", "xelatex", "xelatex" ] } ], "latex-workshop.latex.tools": [ {

"name": "latexmk", "command": "latexmk", "args": [ "-synctex=1", "-interaction=nonstopmode", "-file-line-error", "-pdf", "%DOC%" ] }, {

"name": "xelatex", "command": "xelatex", "args": [ "-synctex=1", "-interaction=nonstopmode", "-file-line-error", "%DOC%" ] }, {

"name": "bibtex", "command": "bibtex", "args": [ "%DOCFILE%" ] } ], "latex-preview.command": "xelatex", //auto compress "latex-workshop.latex.autoBuild.run": "never", // Error Page XXX on XXX not ...}



【本文地址】

公司简介

联系我们

今日新闻

    推荐新闻

    专题文章
      CopyRight 2018-2019 实验室设备网 版权所有