Skip to content

Instantly share code, notes, and snippets.

@orazdow
Created January 6, 2024 12:27
Show Gist options
  • Save orazdow/a6dadc1dac07e9ffb07bc4dec53319b2 to your computer and use it in GitHub Desktop.
Save orazdow/a6dadc1dac07e9ffb07bc4dec53319b2 to your computer and use it in GitHub Desktop.
settings.json
{
"workspaceSidebar.folder": "C:\\Users\\ollie\\Documents\\projects", // projecct manager ext
"editor.mouseWheelScrollSensitivity": 3,
"terminal.integrated.accessibleViewPreserveCursorPosition": true,
"terminal.integrated.profiles.windows": {
"PowerShell": {
"source": "PowerShell",
"icon": "terminal-powershell"
},
"Command Prompt": {
"path": [
"${env:windir}\\Sysnative\\cmd.exe",
"${env:windir}\\System32\\cmd.exe"
],
"args": ["/k"],
"icon": "terminal-cmd"
},
"Git Bash": {
"source": "Git Bash"
}
},
"terminal.integrated.defaultProfile.windows": "Command Prompt",
"workbench.colorCustomizations" : {
"editor.background": "#060f1b",
"editorUnnecessaryCode.opacity": "#00a2cf" ,
"editor.lineHighlightBorder": "#3e3e3e15",
"editor.lineHighlightBackground": "#0520444a",
"editorBracketMatch.border": "#383838",
"breadcrumb.background": "#071425",
"activityBarBadge.foreground": "#0088ff",
"activityBarBadge.background": "#071651",
"sideBar.background": "#030f18",
"editorGutter.background": "#051527",
"activityBar.background": "#041422",
"activityBar.foreground": "#1164c2",
"activityBar.activeBorder":"#276190",
"activityBar.inactiveForeground": "#52747e",
"activityBar.border": "#13203b",
"focusBorder": "#00087a",
"quickInput.background": "#030c17",
"quickInput.foreground": "#b1b1b1",
"input.background": "#0c5ea22a",
"statusBar.background": "#030d22",
"titleBar.activeBackground": "#060e24",
"titleBar.activeForeground": "#8fb6cf",
"terminal.background": "#000000",
"editorLineNumber.foreground": "#839ca2",
"editorLineNumber.activeForeground": "#1780c7",
"sideBar.foreground": "#9acaec",
"sideBarTitle.foreground": "#9bf7f7",
"sideBarSectionHeader.border": "#353d4300",
"sideBarSectionHeader.foreground": "#54b5e6fc",
"sideBarSectionHeader.background": "#11323b65",
"list.inactiveSelectionBackground": "#062c4978",
"list.activeSelectionBackground": "#0d488080",
"list.activeSelectionForeground": "#09daf5",
"list.focusOutline": "#0f8ae100",
"list.hoverBackground": "#11519a3d",
"editorGroupHeader.tabsBackground": "#0b1523ce",
"tab.border": "#03444d61",
"tab.activeBorder": "#0b516a6e",
"tab.activeBorderTop": "#569ba419",
"editorGroupHeader.tabsBorder": "#05314280",
"tab.activeBackground": "#101c3f00",
"tab.inactiveBackground": "#171717",
"tab.hoverBackground": "#ff000000",
"tab.activeForeground": "#6ed779",
"tab.inactiveForeground": "#a4a29f",
"gitDecoration.modifiedResourceForeground": "#ddaa32",
"gitDecoration.untrackedResourceForeground": "#27a5ff",
"tree.indentGuidesStroke": "#00aeff",
"editorBracketHighlight.foreground2": "#89d5f4",
"editorIndentGuide.background1": "#142644",
"editorIndentGuide.activeBackground1": "#2d3e7c",
"editorCursor.foreground": "#6ad9f1",
"terminal.foreground" : "#37b7e2",
"terminalCursor.foreground": "#049d86"
},
"editor.minimap.enabled": false,
"editor.lightbulb.enabled": false,
"editor.hover.enabled": false,
"editor.occurrencesHighlight": "off",
"terminal.integrated.persistentSessionReviveProcess": "never",
"terminal.integrated.cursorStyle": "block",
"terminal.integrated.cursorStyleInactive": "none",
// "terminal.integrated.cursorBlinking": true,
"workbench.colorTheme": "focus", // focus, azuredark, dankerneon
"editor.matchBrackets": "never", // subtle match brackets ext
"workbench.iconTheme": "file-icons-colourless" // icons ext
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment