vscode配置
{
// background
"background.enabled": true,
"background.useDefault": true,
"background.useFront": true,
"background.customImages": [
"file:///home/brooksj/github/Notes/imgs/spiderman1.png",
"file:///home/brooksj/github/Notes/imgs/comic1.png",
"file:///home/brooksj/github/Notes/imgs/spiderman2.png",
// "https://i.loli.net/2018/06/29/5b35d7383694b.png",
// "https://i.loli.net/2018/06/29/5b35d75e58fde.png",
// "https://user-images.githubusercontent.com/24371189/47023104-85336080-d191-11e8-957f-b4ac3f8a24c1.png",
],
"background.style": {
"content": "''",
"pointer-events": "none",
"position": "absolute",
"z-index": "99999",
"width": "100%",
"height": "100%",
"transform": "scale(1.0, 1.0)",
"background-position": "100% 100%",
// "background-position": "right",
"backgroud-size": "auto 100%",
"background-repeat": "no-repeat",
"opacity": 1.0
},
// autoDocstring
"autoDocstring.docstringFormat": "default",
//Latex
"latex-workshop.view.pdf.viewer": "tab",
"latex-workshop.latex.autoClean.run": "onBuilt",
"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",
"*.gz"
],
"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": "pdflatex",
"command": "pdflatex",
"args": [
"-synctex=1",
"-interaction=nonstopmode",
"-file-line-error",
"%DOC%"
]
},
{
"name": "bibtex",
"command": "bibtex",
"args": [
"%DOCFILE%"
]
}
],
"latex-workshop.latex.recipes": [
{
"name": "xelatex",
"tools": [
"xelatex"
]
},
{
"name": "latexmk",
"tools": [
"latexmk"
]
},
{
"name": "bibtex",
"tools": [
"bibtex"
]
},
{
"name": "xelatex -> bibtex -> xelatex*2",
"tools": [
"xelatex",
"bibtex",
"xelatex",
"xelatex"
]
},
{
"name": "pdflatex -> bibtex -> pdflatex*2",
"tools": [
"pdflatex",
"bibtex",
"pdflatex",
"pdflatex"
]
}
],
// python
"python.pythonPath": "/usr/local/anaconda2/envs/Ner/bin/python",
"python.pipenvPath": "/usr/local/anaconda2/envs/Ner/lib/python3.6/site-packages/pip",
"vsicons.dontShowNewVersionMessage": true,
"python.linting.pylintArgs": [ // 关闭pylint的波浪线提示
"--disable=W,C,E"
],
// code-runner
"code-runner.executorMap": {
"python": "/opt/anaconda3/envs/AI/bin/python -u"
},
"explorer.confirmDelete": false,
// workbench
"workbench.settings.openDefaultKeybindings": true,
"workbench.settings.openDefaultSettings": true,
"workbench.settings.editor": "json",
"workbench.colorTheme": "One Dark Pro",
"workbench.iconTheme": "vscode-icons",
// editor
"editor.mouseWheelZoom": true,
"editor.wordWrap": "on",
"editor.fontFamily": "monospace",
"editor.tabSize": 4,
"editor.cursorSmoothCaretAnimation": false,
"editor.hover.delay": 0,
//files
"files.autoGuessEncoding": true,
"files.autoSave": "afterDelay"
}
作者:brooksj —— XDU->NJU
出处:http://www.cnblogs.com/brooksj
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则我特么还能打你啊,强烈谴责。