时间又不会为我赖着不走, 干嘛停下来为了选择头疼

编程匠心者

厚德 求真 励学 笃行
诚朴 雄伟 励学 敦行

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"
}
posted @ 2019-09-15 19:16  编程匠心者  阅读(440)  评论(0编辑  收藏  举报