Last active
November 22, 2022 18:16
-
-
Save generahben/605779be1ec2a3f34e00049c84ce352c to your computer and use it in GitHub Desktop.
VsCode Clean Interface Setting
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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