Skip to content

Instantly share code, notes, and snippets.

@asilvadesigns
Created October 20, 2020 19:44
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 asilvadesigns/6d11a782771c056ec3c0c130dde9420c to your computer and use it in GitHub Desktop.
Save asilvadesigns/6d11a782771c056ec3c0c130dde9420c to your computer and use it in GitHub Desktop.
VS Code Settings
{
"code-runner.showRunIconInEditorTitleMenu": false,
"editor.fontFamily": "OperatorMonoSSm Nerd Font Mono, Menlo, Monaco, 'Courier New', monospace",
"editor.lineHeight": 26,
"editor.suggestSelection": "first",
"editor.quickSuggestions": {
"other": true,
"comments": false,
"strings": false
},
"editor.minimap.enabled": false,
"editor.renderWhitespace": "none",
"css.validate": false,
"less.validate": false,
"scss.validate": false,
"editor.codeActionsOnSave": {
"source.organizeImports": false
},
"editor.tabSize": 2,
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"name": "Comment",
"scope": [
"comment",
"comment.block",
"comment.block.documentation",
"comment.line",
"comment.line.double-slash",
"punctuation.definition.comment",
"entity.other.attribute-name.html"
],
"settings": {
"fontStyle": "italic"
}
}
]
},
"prettier.singleQuote": true,
"prettier.stylelintIntegration": true,
"stylelint.config": {
"extends": [
"<path-to-your-node-modules>/stylelint-config-prettier",
"<path-to-your-node-modules>/stylelint-config-rational-order",
"<path-to-your-node-modules>/stylelint-config-standard"
],
"rules": {
"at-rule-no-unknown": [
true,
{
"ignoreAtRules": ["extend"]
}
]
}
},
"terminal.integrated.fontSize": 13,
"terminal.integrated.lineHeight": 1.25,
"terminal.integrated.scrollback": 5000,
"terminal.integrated.shell.osx": "/bin/zsh",
"vim.leader": ",",
"vim.easymotion": false,
"vim.easymotionMarkerFontFamily": "OperatorMonoSSm Nerd Font Mono",
"vim.easymotionMarkerFontSize": "12",
"vim.easymotionMarkerHeight": 20,
"vim.easymotionMarkerYOffset": 0,
"vim.easymotionMarkerWidthPerChar": 8,
"vim.hlsearch": false,
"vim.visualstar": true,
"vim.insertModeKeyBindings": [
{
"before": ["k", "j"],
"after": ["<Esc>"]
}
],
"vim.normalModeKeyBindingsNonRecursive": [
{
"before": [";"],
"after": ["<leader>", "<leader>", "/"]
},
{
"before": ["g", "d"],
"after": [],
"commands": [
{
"command": "editor.action.goToDeclaration"
}
]
},
{
"before": ["g", "r"],
"after": [],
"commands": [
{
"command": "references-view.find"
}
]
},
{
"before": ["g", "x"],
"after": [],
"commands": [
{
"command": "editor.action.openLink"
}
]
},
{
"before": ["<leader>", "b"],
"after": [],
"commands": [
{
"command": "workbench.action.showAllEditors"
}
]
},
{
"before": ["<leader>", "e"],
"after": [],
"commands": [
{
"command": "workbench.action.toggleSidebarVisibility"
}
]
},
{
"before": ["<leader>", "f"],
"after": [],
"commands": [
{
"command": "workbench.action.quickOpen"
}
]
},
{
"before": ["<leader>", "p", "r"],
"after": [],
"commands": [
{
"command": "editor.action.format"
}
]
},
{
"before": ["<leader>", "t"],
"after": [],
"commands": [
{
"command": "workbench.action.terminal.focus"
}
]
},
{
"before": ["<leader>", "u"],
"after": [],
"commands": [
{
"command": "editor.emmet.action.updateTag"
}
]
},
{
"before": ["<leader>", "m"],
"after": [],
"commands": [
{
"command": "workbench.action.maximizeEditor"
}
]
},
{
"before": ["u"],
"after": [],
"commands": [
{
"command": "undo"
}
]
},
{
"before": ["ctrl+r"],
"after": [],
"commands": [
{
"command": "redo"
}
]
},
{
"before": ["<leader>", "<space>"],
"after": [],
"commands": [
{
"command": "breadcrumbs.focusAndSelect"
}
]
},
{
"before": ["[", "e"],
"after": [],
"commands": [
{
"command": "editor.action.marker.prev",
}
]
},
{
"before": ["]", "e"],
"after": [],
"commands": [
{
"command": "editor.action.marker.next",
}
]
},
{
"before": ["[", "c"],
"after": [],
"commands": [
{
"command": "workbench.action.editor.previousChange",
}
]
},
{
"before": ["]", "c"],
"after": [],
"commands": [
{
"command": "workbench.action.editor.nextChange",
}
]
}
],
"workbench.activityBar.visible": false,
"workbench.colorCustomizations": {
"activityBar.border": "#00000000",
"editorGroup.border": "#00000000",
"editorGroupHeader.tabsBorder": "#00000000",
"panel.border": "#00000000",
"scrollbar.shadow": "#00000000",
"sideBar.border": "#00000000",
"statusBar.border": "#00000000",
"tab.border": "#181a1f00",
"widget.shadow": "#00000000",
"[Nord]": {
"activityBar.border": "#1e232d",
"editorCursor.foreground": "#5e81ac",
"editorGroup.border": "#1e232d",
"editorGroupHeader.tabsBorder": "#1e232d",
"editorLineNumber.activeForeground": "#5e81ac",
"editorLineNumber.foreground": "#4c566a",
"panel.border": "#1e232d",
"sideBar.border": "#1e232d",
"statusBar.border": "#1e232d",
"tab.border": "#1e232d00",
"titleBar.border": "#1e232d"
},
"[Braver's Solarized Dark (themed workbench)]": {
"activityBar.background": "#011f27",
"activityBar.border": "#011f27",
"activityBar.foreground": "#586e75",
"activityBarBadge.background": "#586e75",
"editorCursor.foreground": "#586e75",
"editorGroup.border": "#011f27",
"editorGroup.emptyBackground": "#011f27",
"editorGroupHeader.tabsBackground": "#011f27",
"editorGroupHeader.tabsBorder": "#011f27",
"editorLineNumber.activeForeground": "#586e75",
"editorLineNumber.foreground": "#586e75",
"list.activeSelectionForeground": "#93a1a1",
"sideBar.border": "#011f27",
"sideBar.foreground": "#586e75",
"statusBar.border": "#011f27",
"statusBar.foreground": "#586e75",
"tab.activeForeground": "#93a1a1",
"tab.border": "#181a1f00",
"tab.inactiveBackground": "#ff000000",
"tab.inactiveForeground": "#586e75",
"terminal.ansiBrightWhite": "#586e75",
"titleBar.activeForeground": "#93a1a1",
"titleBar.border": "#011f27",
"welcomePage.background": "#002b36"
},
"[Braver's Solarized Light (themed workbench)]": {
"activityBar.background": "#fdf6e3",
"activityBar.border": "#ddd6c100",
"activityBar.foreground": "#657b83",
"activityBarBadge.background": "#93a1a1",
"editorGroup.border": "#ddd6c1",
"editorGroup.emptyBackground": "#fdf6e3",
"editorGroupHeader.tabsBackground": "#fdf6e3",
"editorGroupHeader.tabsBorder": "#ddd6c1",
"editorLineNumber.activeForeground": "#93a1a1",
"editorLineNumber.foreground": "#93a1a1",
"panel.background": "#eee8d5",
"panel.border": "#ddd6c100",
"sideBar.border": "#ddd6c100",
"statusBar.border": "#ddd6c100",
"tab.border": "#181a1f00",
"tab.inactiveBackground": "#93a1a100",
"tab.inactiveForeground": "#93a1a1",
"terminal.ansiBrightWhite": "#93a1a1",
"titleBar.border": "#ddd6c100",
"welcomePage.background": "#fdf6e3"
},
"[Atom One Light]": {
"activityBar.border": "#dbdbdc",
"activityBar.foreground": "#5c6370",
"diffEditor.border": "#dbdbdc",
"editor.selectionHighlightBackground": "#528bff25",
"editor.selectionHighlightBorder": "#528bff25",
"editorCursor.foreground": "#528bff",
"editorGroup.border": "#dbdbdc", // IMPORTANT
"editorGroupHeader.tabsBackground": "#eaeaeb00",
"editorGroupHeader.tabsBorder": "#dbdbdc", // IMPORTANT
"editorGutter.addedBackground": "#50a14f",
"editorGutter.deletedBackground": "#e45649",
"editorGutter.modifiedBackground": "#4078f2",
"editorLineNumber.activeForeground": "#528bff",
"editorLineNumber.foreground": "#a0a1a775",
"editorOverviewRuler.addedForeground": "#50a14f",
"editorOverviewRuler.deletedForeground": "#e45649",
"editorOverviewRuler.errorForeground": "#e45649",
"editorOverviewRuler.modifiedForeground": "#4078f2",
"editorRuler.foreground": "#dbdbdc",
"list.activeSelectionBackground": "#528bff25",
"notificationToast.border": "#dbdbdc",
"notifications.border": "#dbdbdc",
"panel.border": "#dbdbdc",
"panelTitle.activeBorder": "#181a1f00",
"sideBar.border": "#dbdbdc",
"sideBar.foreground": "#5c6370",
"sideBarSectionHeader.background": "#00000000",
"sideBarSectionHeader.border": "#dbdbdc",
"statusBar.border": "#dbdbdc",
"statusBar.foreground": "#5c6370",
"tab.activeBorder": "#4078F200",
"tab.border": "#dbdbdc00",
"tab.inactiveBackground": "#eaeaeb00",
"terminal.ansiBlack": "#000000",
"terminal.ansiBlue": "#4078F2",
"terminal.ansiBrightBlack": "#000000",
"terminal.ansiBrightBlue": "#4078F2",
"terminal.ansiBrightCyan": "#0184BC",
"terminal.ansiBrightGreen": "#50A14F",
"terminal.ansiBrightMagenta": "#A626A4",
"terminal.ansiBrightRed": "#E45649",
"terminal.ansiBrightWhite": "#A0A1A7",
"terminal.ansiBrightYellow": "#986801",
"terminal.ansiCyan": "#0184BC",
"terminal.ansiGreen": "#50A14F",
"terminal.ansiMagenta": "#A626A4",
"terminal.ansiRed": "#E45649",
"terminal.ansiWhite": "#A0A1A7",
"terminal.ansiYellow": "#986801",
"titleBar.activeForeground": "#5c6370",
"titleBar.border": "#dbdbdc",
},
"[Atom One Dark]": {
"activityBar.background": "#282c34",
"activityBar.border": "#181a1f",
"activityBar.foreground": "#7f849b",
"breadcrumbPicker.background": "#282c34",
"diffEditor.border": "#181a1f",
"editor.selectionHighlightBackground": "#528bff25",
"editor.selectionHighlightBorder": "#528bff25",
"editorCursor.foreground": "#528bff75",
"editorGroup.border": "#181a1f", // IMPORTANT
"editorGroupHeader.tabsBackground": "#21252b00",
"editorGroupHeader.tabsBorder": "#181a1f", // IMPORTANT
"editorGutter.addedBackground": "#98c379",
"editorGutter.deletedBackground": "#e06c75",
"editorGutter.modifiedBackground": "#61afef",
"editorLineNumber.activeForeground": "#528bff75",
"editorLineNumber.foreground": "#5c637075",
"editorOverviewRuler.addedForeground": "#98c379",
"editorOverviewRuler.deletedForeground": "#e06c75",
"editorOverviewRuler.errorForeground": "#ff0000",
"editorOverviewRuler.modifiedForeground": "#61afef",
"editorRuler.foreground": "#5c637040",
"foreground": "#9da5b4",
"input.border": "#181a1f",
"list.activeSelectionBackground": "#ccd1d825",
"notificationToast.border": "#181a1f",
"notifications.border": "#181a1f",
"panel.background": "#21252b",
"panel.border": "#181a1f",
"panelTitle.activeBorder": "#181a1f00",
"panelTitle.activeForeground": "#9da5b4",
"sideBar.border": "#181a1f",
"sideBar.foreground": "#7f849b",
"sideBarSectionHeader.background": "#00000000",
"sideBarSectionHeader.border": "#181a1f",
"statusBar.border": "#181a1f",
"statusBar.foreground": "#5c6370",
"tab.activeBorderTop": "#61AFEF00",
"tab.activeForeground": "#9da5b4",
"tab.border": "#181a1f00",
"tab.inactiveBackground": "#21252b00",
"terminal.ansiBlack": "#1E2127",
"terminal.ansiBlue": "#61AFEF",
"terminal.ansiBrightBlack": "#1E2127",
"terminal.ansiBrightBlue": "#61AFEF",
"terminal.ansiBrightCyan": "#56B6C2",
"terminal.ansiBrightGreen": "#98C379",
"terminal.ansiBrightMagenta": "#C678DD",
"terminal.ansiBrightRed": "#E06C75",
"terminal.ansiBrightWhite": "#ABB2BF",
"terminal.ansiBrightYellow": "#D19A66",
"terminal.ansiCyan": "#56B6C2",
"terminal.ansiGreen": "#98C379",
"terminal.ansiMagenta": "#C678DD",
"terminal.ansiRed": "#E06C75",
"terminal.ansiWhite": "#ABB2BF",
"terminal.ansiYellow": "#D19A66",
"titleBar.activeForeground": "#5c6370",
"titleBar.border": "#181a1f",
}
},
// "typescript.tsdk": "/usr/local/lib/node_modules/typescript/lib/",
"window.zoomLevel": 0,
"git.enableSmartCommit": true,
"breadcrumbs.symbolPath": "off",
"window.title": "${rootName}${separator}${folderName}",
"editor.parameterHints.enabled": false,
"terminal.integrated.cursorBlinking": true,
"zenMode.centerLayout": false,
"zenMode.hideActivityBar": false,
"vim.sneak": false,
"vim.sneakUseIgnorecaseAndSmartcase": true,
"code-runner.clearPreviousOutput": true,
"bookmarks.navigateThroughAllFiles": true,
"vim.showmodename": false,
"diffEditor.ignoreTrimWhitespace": false,
"workbench.statusBar.visible": true,
"zenMode.hideTabs": false,
"zenMode.hideLineNumbers": false,
"zenMode.hideStatusBar": false,
"explorer.decorations.colors": false,
"workbench.list.automaticKeyboardNavigation": false,
// "editor.acceptSuggestionOnCommitCharacter": true, // controls auto complete
// "editor.wordBasedSuggestions": true,
"scm.diffDecorations": "overview",
"editor.overviewRulerBorder": false,
"editor.snippetSuggestions": "bottom",
"search.quickOpen.includeHistory": false,
"bookmarks.saveBookmarksInProject": true,
"search.exclude": {
"**/dist": true
},
"files.watcherExclude": {
"**/coverage/**": true,
"**/dist": true
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[scss]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"html.format.enable": false,
"gitlens.hovers.currentLine.over": "line",
"gitlens.blame.heatmap.enabled": false,
"gitlens.blame.highlight.enabled": false,
"gitlens.hovers.enabled": false,
"gitlens.codeLens.enabled": false,
"gitlens.statusBar.enabled": false,
"gitlens.mode.statusBar.enabled": false,
"gitlens.currentLine.enabled": false,
"window.titleBarStyle": "custom",
"window.nativeTabs": false,
"workbench.iconTheme": "file-icons",
"rewrap.wrappingColumn": 80,
"workbench.list.keyboardNavigation": "filter",
"workbench.editor.openPositioning": "left",
"gitlens.menus": {
"editor": {
"blame": false,
"clipboard": true,
"compare": true,
"details": false,
"history": false,
"remote": false
},
"editorGroup": {
"blame": false,
"compare": false
},
"editorTab": {
"clipboard": true,
"compare": true,
"history": true,
"remote": true
},
"scmGroup": {
"compare": true,
"openClose": true,
"stash": true,
"stashInline": true
},
"scmItem": {
"clipboard": true,
"compare": true,
"history": true,
"remote": true,
"stash": true
}
},
"editor.renderIndentGuides": false,
"breadcrumbs.enabled": true,
"window.newWindowDimensions": "maximized",
"workbench.editor.showTabs": false,
"emmet.triggerExpansionOnTab": true,
"editor.lineNumbers": "relative",
"editor.fontSize": 14,
"workbench.tree.renderIndentGuides": "none",
"workbench.colorTheme": "Braver's Solarized Light (themed workbench)",
"javascript.updateImportsOnFileMove.enabled": "always",
"importSorter.sortConfiguration.customOrderingRules.defaultNumberOfEmptyLinesAfterGroup": 0,
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.folding": false,
"vim.wrapscan": false,
"editor.accessibilitySupport": "off",
"vim.showcmd": false,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment