Skip to content

Instantly share code, notes, and snippets.

@MajhiRockzZ
Last active October 9, 2019 10:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MajhiRockzZ/8c821a6ce4b1b5b484e6b7a223851a23 to your computer and use it in GitHub Desktop.
Save MajhiRockzZ/8c821a6ce4b1b5b484e6b7a223851a23 to your computer and use it in GitHub Desktop.
⚡ My VSCode Settings
{
/* ==== DEMOS ! ==== */
"update.mode": "none",
"extensions.autoCheckUpdates": true,
/* ==== SETTINGS ==== */
"workbench.settings.editor": "json",
/* ==== EDITOR ==== */
"editor.cursorSmoothCaretAnimation": true,
"editor.renderIndentGuides": true,
"editor.renderWhitespace": "boundary",
"editor.minimap.enabled": false,
"editor.fontLigatures": true,
"editor.fontFamily": "Operator Mono SSm Lig, Menlo, Monaco, 'Courier New', monospace",
"editor.multiCursorModifier": "ctrlCmd",
"editor.copyWithSyntaxHighlighting": false,
"editor.suggestSelection": "first",
"editor.wordWrap": "on",
"diffEditor.renderSideBySide": false,
"files.trimTrailingWhitespace": true,
"editor.cursorStyle": "line",
"editor.cursorWidth": 4,
"editor.cursorBlinking": "solid",
/* ==== WORKBENCH ==== */
"files.autoSaveDelay": 1000,
"files.autoSave": "afterDelay",
"files.associations": {
"Dockerfile-centos": "dockerfile",
"Dockerfile_*": "dockerfile",
"dockerfile-*": "dockerfile"
},
"workbench.editor.closeEmptyGroups": false,
"workbench.tree.indent": 10,
"workbench.editor.showIcons": false,
"workbench.tips.enabled": false,
"workbench.startupEditor": "none",
"window.zoomLevel": 1,
"workbench.iconTheme": "vscode-icons",
"workbench.colorTheme": "Cobalt2",
"workbench.colorCustomizations": {
/* Global Workbench Settings */
"statusBar.background": "#0059ffa4",
"statusBar.foreground": "#ffffff",
/* Custom Cobalt2 Settings */
"[Cobalt2]": {
"tab.activeBackground": "#077bf73e",
"tab.activeBorder": "#fffb0050",
"gitDecoration.ignoredResourceForeground": "#706e6e"
},
/* Custom Terminal Settings */
"terminal.ansiBlack": "#000000",
"terminal.ansiRed": "#c23621",
"terminal.ansiGreen": "#25bc24",
"terminal.ansiYellow": "#adad27",
"terminal.ansiBlue": "#492ee1",
"terminal.ansiMagenta": "#d338d3",
"terminal.ansiCyan": "#33bbc8",
"terminal.ansiWhite": "#cbcccd",
"terminal.ansiBrightBlack": "#818383",
"terminal.ansiBrightRed": "#fc391f",
"terminal.ansiBrightGreen": "#31e722",
"terminal.ansiBrightYellow": "#eaec23",
"terminal.ansiBrightBlue": "#5833ff",
"terminal.ansiBrightMagenta": "#f935f8",
"terminal.ansiBrightCyan": "#14f0f0",
"terminal.ansiBrightWhite": "#e9ebeb",
},
/* ==== NPM ==== */
"npm.enableScriptExplorer": true,
"npm.packageManager": "yarn",
/* ==== GIT ==== */
"git.autofetch": true,
"git.defaultCloneDirectory": "~/src/github",
"git.enableSmartCommit": true,
/* ==== TERMINAL ==== */
"terminal.integrated.showExitAlert": false,
"terminal.integrated.fontFamily": "MesloLGS NF",
"terminal.integrated.fontSize": 12,
"terminal.integrated.fontWeight": "100",
/* ==== DEBUGGING ==== */
"debug.node.autoAttach": "on",
"debug.toolBarLocation": "floating",
"debug.openDebug": "openOnSessionStart",
"debug.openExplorerOnEnd": true,
"debug.showInStatusBar": "onFirstSessionStart",
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment