VS code当前设置备份

这是一篇关于我的VS Code相关设置的备份 可以直接略过

update 8.18.18

// Place your settings in this file to overwrite the default settings
{
    "window.zoomLevel": 0,
    "editor.minimap.enabled": true,
    "editor.dragAndDrop": true,
    "[cpp]": {
        "editor.quickSuggestions": true
    },
    "[c]": {
        "editor.quickSuggestions": true
    },
    //modified by gy on 5.11.2018
    "workbench.colorCustomizations":{
        //"editorBackground": "#b1d85c"
        //"editorSelection": "#b1d85c"
        "editorIndentGuide.activeBackground": "#1c865a"
    },
    "workbench.iconTheme": "material-icon-theme",
    "workbench.colorTheme": "Oceanic Next (Sublime)",

    "editor.rulers": [100],
    "editor.fontSize": 14,

    //added by gy on 8.17.2017
    "matlab.mlintpath": "/Applications/MATLAB_R2016b.app/bin/maci64/mlint",
    "files.associations": {"*.m": "matlab"},
    //added by gy on 9.1.2017
    "C_Cpp.intelliSenseEngine": "Default",
    "material-icon-theme.showUpdateMessage": false,
    //added by gy on 10.6.2017
    "window.nativeTabs": true,
    "files.autoGuessEncoding": true,
    //added by gy on 12.18.2017
    "editor.detectIndentation": false,
    "material-icon-theme.activeIconPack": "angular",
    //added by gy on 03.27.2018
    "latex-workshop.view.pdf.viewer": "tab",
    "latex-workshop.latex.recipes": [
        {
            "name": "xelatex -> bibtex -> pdflatex*2",
            "tools": [
                "xelatex",
                "bibtex",
                "pdflatex",
                "pdflatex"
            ]
        }
    ],
    "latex-workshop.latex.tools": [
        {
            "name": "pdflatex",
            "command": "pdflatex",
            "args": [
                "-synctex=1",
                "-interaction=nonstopmode",
                "-file-line-error",
                "%DOC%"
            ]
        },
        {
            "name": "bibtex",
            "command": "bibtex",
            "args": [
                "%DOCFILE%"
            ]
        },
        {
            "name": "xelatex",
            "command": "xelatex",
            "args": [
                "-synctex=1",
                "-interaction=nonstopmode",
                "-file-line-error",
                "%DOC%"
            ]
        }
    ],
    // added by gy on 08.18.2018
    "breadcrumbs.enabled": true
}

update 5.11.18

// Place your settings in this file to overwrite the default settings
{
    "window.zoomLevel": 0,
    "editor.minimap.enabled": true,
    "editor.dragAndDrop": true,
    "[cpp]": {
        "editor.quickSuggestions": true
    },
    "[c]": {
        "editor.quickSuggestions": true
    },
    //modified by gy on 5.11.2018
    "workbench.colorCustomizations":{
        //"editorBackground": "#b1d85c"
        //"editorSelection": "#b1d85c"
        "editorIndentGuide.activeBackground": "#1c865a"
    },
    "workbench.iconTheme": "material-icon-theme",
    "workbench.colorTheme": "Oceanic Next (Sublime)",

    "editor.rulers": [100],
    "editor.fontSize": 14,

    //added by gy on 8.17.2017
    "matlab.mlintpath": "/Applications/MATLAB_R2016b.app/bin/maci64/mlint",
    "files.associations": {"*.m": "matlab"},
    //added by gy on 9.1.2017
    "C_Cpp.intelliSenseEngine": "Default",
    "material-icon-theme.showUpdateMessage": false,
    //added by gy on 10.6.2017
    "window.nativeTabs": true,
    "files.autoGuessEncoding": true,
    //added by gy on 12.18.2017
    "editor.detectIndentation": false,
    "material-icon-theme.activeIconPack": "angular",
    //added by gy on 03.27.2018
    "latex-workshop.view.pdf.viewer": "tab",
    "latex-workshop.latex.recipes": [
        {
            "name": "xelatex -> bibtex -> pdflatex*2",
            "tools": [
                "xelatex",
                "bibtex",
                "pdflatex",
                "pdflatex"
            ]
        }
    ],
    "latex-workshop.latex.tools": [
        {
            "name": "pdflatex",
            "command": "pdflatex",
            "args": [
                "-synctex=1",
                "-interaction=nonstopmode",
                "-file-line-error",
                "%DOC%"
            ]
        },
        {
            "name": "bibtex",
            "command": "bibtex",
            "args": [
                "%DOCFILE%"
            ]
        },
        {
            "name": "xelatex",
            "command": "xelatex",
            "args": [
                "-synctex=1",
                "-interaction=nonstopmode",
                "-file-line-error",
                "%DOC%"
            ]
        }
    ]
}

update 3.25.18

有点窝火,latex-workshop 的作者把原来的toolchain设置丢弃了,搞了个新设置叫recipe,我反正是没想明白这家伙到底想干嘛,不过浪费了我不少时间去把toolchain选项的设置转移到recipe中这件事到是真的。话说这玩意不应该是我升级插件以后插件自动帮我转移的么,估计就是他太懒不想写这个。这点倒是跟我有时候很想啊哈哈。不过,还是,窝火啊!!就好像别人的时间不值钱一样。

// Place your settings in this file to overwrite the default settings
{
    "window.zoomLevel": 0,
    "editor.minimap.enabled": true,
    "editor.dragAndDrop": true,
    "[cpp]": {
        "editor.quickSuggestions": true
    },
    "[c]": {
        "editor.quickSuggestions": true
    },
    //modified by gy on 8.11.2017
    "workbench.colorCustomizations":{
        //"editorBackground": "#b1d85c"
        //"editorSelection": "#b1d85c"
    },
    "workbench.iconTheme": "material-icon-theme",
    "workbench.colorTheme": "Oceanic Next (Sublime)",

    "editor.rulers": [100],
    "editor.fontSize": 14,

    //added by gy on 8.17.2017
    "matlab.mlintpath": "/Applications/MATLAB_R2016b.app/bin/maci64/mlint",
    "files.associations": {"*.m": "matlab"},
    //added by gy on 9.1.2017
    "C_Cpp.intelliSenseEngine": "Default",
    "material-icon-theme.showUpdateMessage": false,
    //added by gy on 10.6.2017
    "window.nativeTabs": true,
    "files.autoGuessEncoding": true,
    //added by gy on 12.18.2017
    "editor.detectIndentation": false,
    "material-icon-theme.activeIconPack": "angular",
    //added by gy on 03.25.2018
    "latex-workshop.view.pdf.viewer": "tab",
    "latex-workshop.latex.recipes": [
        {
            "name": "xelatex -> bibtex -> pdflatex*2",
            "tools": [
                "xelatex",
                "bibtex",
                "pdflatex",
                "pdflatex"
            ]
        }
    ],
    "latex-workshop.latex.tools": [
        {
            "name": "pdflatex",
            "command": "pdflatex",
            "args": [
                "-synctex=1",
                "-interaction=nonstopmode",
                "-file-line-error",
                "%DOC%"
            ]
        },
        {
            "name": "bibtex",
            "command": "bibtex",
            "args": [
                "%DOCFILE%"
            ]
        },
        {
            "name": "xelatex",
            "command": "xelatex",
            "args": [
                "-synctex=1",
                "-interaction=nonstopmode",
                "-file-line-error",
                "%DOC%"
            ]
        }
    ]
}

lagacy 9.5.17

// Place your settings in this file to overwrite the default settings
{
    "window.reopenFolders": "all",
    "window.zoomLevel": 0,
    "editor.minimap.enabled": true,
    "editor.dragAndDrop": true,
    "[cpp]": {
        "editor.quickSuggestions": true
    },
    "[c]": {
        "editor.quickSuggestions": true
    },
    //modified by gy on 8.11.2017
    "workbench.colorCustomizations":{
        //"editorBackground": "#b1d85c"
        //"editorSelection": "#b1d85c"
    },
    "workbench.iconTheme": "material-icon-theme",
    "workbench.colorTheme": "Oceanic Next (Sublime)",

    "editor.rulers": [100],
    "guides.normal.style": "dashed",
    "guides.active.style": "dashed",
    "guides.active.width": 2,
    "guides.normal.width": 2,
    "guides.stack.style": "dashed",
    "guides.stack.width": 2,
    "guides.normal.color.dark": "rgba(0, 139, 69, 0.75)",
    "guides.active.color.dark": "rgba(250, 250, 0, 0.75)",
    "editor.fontSize": 14,

    //added by gy on 8.17.2017
    "matlab.mlintpath": "/Applications/MATLAB_R2016b.app/bin/maci64/mlint",
    "files.associations": {"*.m": "matlab"},
    //added by gy on 9.1.2017
    "C_Cpp.intelliSenseEngine": "Default",
}

lagacy 8.17.17

// Place your settings in this file to overwrite the default settings
{
    "window.reopenFolders": "all",
    "window.zoomLevel": 0,
    "editor.minimap.enabled": true,
    "editor.dragAndDrop": true,
    "[cpp]": {
        "editor.quickSuggestions": true
    },
    "[c]": {
        "editor.quickSuggestions": true
    },
    //modified by gy on 8.11.2017
    "workbench.experimental.colorCustomizations":{
        //"editorBackground": "#b1d85c"
        //"editorSelection": "#b1d85c"
    },
    "workbench.iconTheme": "material-icon-theme",
    "workbench.colorTheme": "Oceanic Next (Sublime)",

    "editor.rulers": [100],
    "guides.normal.style": "dashed",
    "guides.active.style": "dashed",
    "guides.active.width": 2,
    "guides.normal.width": 2,
    "guides.stack.style": "dashed",
    "guides.stack.width": 2,
    "guides.normal.color.dark": "rgba(0, 139, 69, 0.75)",
    "guides.active.color.dark": "rgba(250, 250, 0, 0.75)",
    "editor.fontSize": 14

    //added by gy on 8.17.2017
    "matlab.mlintpath": "/Applications/MATLAB_R2016b.app/bin/maci64/mlint";
    "files.associations": {"*.m": "matlab"}

}

legacy 8.11.17

// Place your settings in this file to overwrite the default settings
{
    "window.reopenFolders": "all",
    "window.zoomLevel": 0,
    "editor.minimap.enabled": true,
    "editor.dragAndDrop": true,
    "[cpp]": {
        "editor.quickSuggestions": true
    },
    "[c]": {
        "editor.quickSuggestions": true
    },
    //modified by gy on 8.11.2017
    "workbench.experimental.colorCustomizations":{
        //"editorBackground": "#b1d85c"
        //"editorSelection": "#b1d85c"
    },
    "workbench.iconTheme": "material-icon-theme",
    "workbench.colorTheme": "Oceanic Next (Sublime)",

    "editor.rulers": [100],
    "guides.normal.style": "dashed",
    "guides.active.style": "dashed",
    "guides.active.width": 2,
    "guides.normal.width": 2,
    "guides.stack.style": "dashed",
    "guides.stack.width": 2,
    "guides.normal.color.dark": "rgba(0, 139, 69, 0.75)",
    "guides.active.color.dark": "rgba(250, 250, 0, 0.75)",
    "editor.fontSize": 14
}

lagacy 4.30.17

// 将设置放入此文件中以覆盖默认设置
{
    "window.reopenFolders": "all",
    "window.zoomLevel": 0,
    "editor.minimap.enabled": true,
    "editor.dragAndDrop": true,
    "[cpp]": {
        "editor.quickSuggestions": true
    },
    "[c]": {
        "editor.quickSuggestions": true
    },
    "workbench.experimental.colorCustomizations":{
        //"editorBackground": "#b1d85c"
        //"editorSelection": "#b1d85c"
    },
    "workbench.iconTheme": "material-icon-theme",
    "workbench.colorTheme": "Oceanic Next (Sublime)",

    //added by gy on 4.22.2017
    "editor.rulers": [100],
    "guides.normal.style": "dashed",
    "guides.active.style": "dashed",
    "guides.active.width": 2,
    "guides.normal.width": 2,
    "guides.stack.style": "dashed",
    "guides.stack.width": 2,
    "guides.normal.color.dark": "rgba(0, 139, 69, 0.75)",
    "guides.active.color.dark": "rgba(250, 250, 0, 0.75)"

}

visitor tracker
访客追踪插件


猜你喜欢

转载自blog.csdn.net/S_gy_Zetrov/article/details/70388922