Skip to content

Instantly share code, notes, and snippets.

@generahben
Last active November 22, 2022 18:16
Show Gist options
  • Save generahben/605779be1ec2a3f34e00049c84ce352c to your computer and use it in GitHub Desktop.
Save generahben/605779be1ec2a3f34e00049c84ce352c to your computer and use it in GitHub Desktop.
VsCode Clean Interface Setting
{
"workbench.iconTheme": "material-icon-theme",
"editor.minimap.enabled": false,
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true,
"editor.lineHeight": 30,
"workbench.colorCustomizations": {
"editor.background": "#020a11",
"sideBar.background": "#020a11",
"menu.background": "#252c33",
"activityBar.background": "#020a11",
"tab.inactiveBackground": "#020a11",
"tab.activeBorderTop": "#0f639c",
"tab.activeBorder": "#0f639c",
"titleBar.activeBackground": "#020a11",
"editorGroupHeader.tabsBackground": "#020a11"
},
"launch": {
"configurations": [],
"compounds": []
},
"terminal.integrated.profiles.windows": {
"PowerShell": {
"source": "PowerShell",
"icon": "terminal-powershell"
},
"Command Prompt": {
"path": [
"${env:windir}\\Sysnative\\cmd.exe",
"${env:windir}\\System32\\cmd.exe"
],
"args": [],
"icon": "terminal-cmd"
},
"Git Bash": {
"source": "Git Bash"
},
"Windows PowerShell": {
"path": "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\powershell.exe"
}
},
"terminal.integrated.defaultProfile.windows": "Windows PowerShell",
"security.workspace.trust.untrustedFiles": "open",
"editor.guides.indentation": false,
"git.autofetch": true,
"php.suggest.basic": false,
"php.validate.enable": false,
"emmet.excludeLanguages": [
"markdown",
"php"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment