Aeonexe
7/30/2019 - 3:18 PM

VS code customization

Personalización de tema para VS code

{
    "atomKeymap.promptV3Features": true,
    "editor.multiCursorModifier": "ctrlCmd",
    "editor.formatOnPaste": true,
    "window.smoothScrollingWorkaround": true,
    "window.titleBarStyle": "custom",
    "search.location": "panel",
    "workbench.iconTheme": "material-icon-theme",
    "window.zoomLevel": -1,
    "liveServer.settings.donotShowInfoMsg": true,
    "terminal.integrated.shell.windows": "C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\powershell.exe",
    "breadcrumbs.enabled": true,
    "workbench.colorCustomizations": {
        // "statusBar.background": "#232524",
        // "menubar.selectionBackground": "#353553",
        // "breadcrumb.background": "#222423",
        // "editorGroup.dropBackground": "#1e1e29",
        "editorGroupHeader.noTabsBackground": "#19181b",
        // "editorGroupHeader.tabsBackground": "#1b1d1c",
        // "editorGroup.emptyBackground": "#542add",
        // "tab.activeBackground": "#333634",
        // "tab.inactiveBackground": "#131414",
        // "editor.background": "#19181b", //Background
        // "sideBar.background": "#19181b",
        // "titleBar.activeBackground": "#19181b",
        // "panel.background": "#19181b",
        // "activityBar.background": "#19181b",
        // "progressBar.background": "#19181b",
        // "sideBar.foreground": "#959595",
        // "editorCursor.foreground": "#7b00f6",
        "editor.selectionBackground": "#3f4ae0",
        "editor.selectionForeground": "#fff",
        "editor.inactiveSelectionBackground": "#7a2e69",
        // "editor.findMatchBackground": "#0077ff",
        // "editor.findMatchHighlightBackground": "#00a2ff88",
        "editor.lineHighlightBackground": "#7806d6",
        // "editorBracketMatch.border": "#ffd000bc",
    },
    "editor.tokenColorCustomizations": {
        "comments": "#ffffff57", // comentarios
        "strings": "#f8237c",
        "numbers": "#ffc400",
        "variables": "#ff6600",
        "textMateRules": [
            {
                "scope": "entity.name.tag",
                "settings": {
                    "foreground": "#f515e2"
                }
            },
            {
                "scope": "keyword.control",
                "settings": {
                    "foreground": "#f515e2"
                }
            },
            {
                "scope": "punctuation.section.embedded.begin.php",
                "settings": {
                    "foreground": "#ffffffb9"
                }
            },
            {
                "scope": "punctuation.section.embedded.end.php",
                "settings": {
                    "foreground": "#ffffffb9"
                }
            },
            {
                "scope": "support.function",
                "settings": {
                    "foreground": "#469cfd"
                }
            },
            {
                "scope": "support.type.property-name",
                "settings": {
                    "foreground": "#e369f3b9"
                }
            },
            {
                "scope": "entity.name.tag.css",
                "settings": {
                    "foreground": "#00d9ff"
                }
            },
            {
                "scope": "variable.scss",
                "settings": {
                    "foreground": "#ff6600"
                }
            },
            {
                "scope": "entity.name.function",
                "settings": {
                    "foreground": "#00ff15"
                }
            },
            {
                "scope": "entity.other.attribute-name",
                "settings": {
                    "foreground": "#00f7ff"
                }
            },
            {
                "scope": "entity.other.attribute-name.attribute.scss",
                "settings": {
                    "foreground": "#fbff00"
                }
            },
            {
                "scope": "entity.other.attribute-name.class.css",
                "settings": {
                    "foreground": "#7bff00"
                }
            },
        ]
    },
    "editor.mouseWheelZoom": true,
    "editor.renderWhitespace": "all",
    "editor.tabCompletion": "on",
    "editor.fontWeight": "400",
    "editor.minimap.maxColumn": 25,
    "workbench.startupEditor": "none",
    "workbench.colorTheme": "Atom One Dark",
    "editor.minimap.showSlider": "always",
    "workbench.editor.highlightModifiedTabs": true,
    "liveServer.settings.donotVerifyTags": true,
    "workbench.tree.indent": 24,
    "workbench.tree.renderIndentGuides": "always",
    "breadcrumbs.icons": false,
    "workbench.sideBar.location": "left",
    "workbench.activityBar.visible": true,
    "editor.fontFamily": "'Courier New', monospace",
    "editor.renderControlCharacters": true,
}