• 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"
    }
    
  • 相关阅读:
    LeetCode:Validate Binary Search Tree
    二叉树的非递归遍历(非递归使用栈、非递归不使用栈)
    scala 基础语法
    scala VS python2 (linux or shell)
    web压力测试工具
    Elasticsearch cluster health: yellow unassigned shards
    GC overhead limit exceeded
    linux定时任务的设置
    linux CPU占用率高(转)
    JQuery Sparkline 说明文档
  • 原文地址:https://www.cnblogs.com/brooksj/p/11523789.html
Copyright © 2020-2023  润新知