Skip to content

Instantly share code, notes, and snippets.

@humayunahmed8
Last active February 13, 2022 14:02
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 humayunahmed8/6ab782e8e34b9213ca89e373ea303db8 to your computer and use it in GitHub Desktop.
Save humayunahmed8/6ab782e8e34b9213ca89e373ea303db8 to your computer and use it in GitHub Desktop.
VS Code Settings
{
"workbench.colorTheme": "Dracula Soft",
"workbench.productIconTheme": "fluent-icons",
"workbench.iconTheme": "vscode-icons",
"workbench.editor.enablePreview": false,
"powermode.enabled": true,
"liveServer.settings.donotShowInfoMsg": true,
"explorer.compactFolders": false,
"bracketPairColorizer.excludedLanguages": [""],
"php.validate.executablePath": "F:\\xampp\\php\\php.exe",
"bracketPairColorizer.depreciation-notice": false,
"files.autoSave": "afterDelay",
// Editor
"editor.fontSize": 18,
"editor.fontFamily": "'Operator Mono Medium', Fira Code",
"editor.fontLigatures": true,
"editor.wordWrap": "on",
"editor.minimap.enabled": false,
"editor.renderWhitespace": "none",
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": "comment",
"settings": {
"fontStyle": "italic"
}
},
{
"name": "CSS Class and Support - Class",
"scope": [
"source.css entity.other.attribute-name.class.css"
// "source.sass entity.other.attribute-name.class.css",
// "source.scss entity.other.attribute-name.class.css",
// "source.less entity.other.attribute-name.class.css",
// "source.stylus entity.other.attribute-name.class.css",
// "source.postcss entity.other.attribute-name.class.css"
],
"settings": {
"fontStyle": "normal"
}
}
]
},
// Config Related to Code Formatting
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"[javascript]": {
"editor.formatOnSave": false,
"editor.defaultFormatter": null
},
"[javascriptreact]": {
"editor.formatOnSave": false,
"editor.defaultFormatter": null
},
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
"source.fixAll.tslint": true,
"source.organizeImports": true
},
"eslint.alwaysShowStatus": true,
// Emmet and Auto Closing
// "emmet.showExpandedAbbreviation": "never",
// "html.autoClosingTags": false,
// Cursor
"editor.cursorSmoothCaretAnimation": true,
"editor.cursorBlinking": "expand",
"editor.cursorWidth": 2,
//Terminal Customization
"terminal.integrated.fontSize": 16,
"terminal.integrated.fontWeight": "normal",
"terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe",
"terminal.integrated.shellArgs.windows": ["--login"],
// Git Decoratoin
"git.decorations.enabled": false,
// Terminal Color Customization
"workbench.colorCustomizations": {
"terminal.background": "#1D2021",
"terminal.foreground": "#A89984",
"terminalCursor.background": "#A89984",
"terminalCursor.foreground": "#A89984",
"terminal.ansiBlack": "#1D2021",
"terminal.ansiBlue": "#0D6678",
"terminal.ansiBrightBlack": "#665C54",
"terminal.ansiBrightBlue": "#0D6678",
"terminal.ansiBrightCyan": "#8BA59B",
"terminal.ansiBrightGreen": "#95C085",
"terminal.ansiBrightMagenta": "#8F4673",
"terminal.ansiBrightRed": "#FB543F",
"terminal.ansiBrightWhite": "#FDF4C1",
"terminal.ansiBrightYellow": "#FAC03B",
"terminal.ansiCyan": "#8BA59B",
"terminal.ansiGreen": "#95C085",
"terminal.ansiMagenta": "#8F4673",
"terminal.ansiRed": "#FB543F",
"terminal.ansiWhite": "#A89984",
"terminal.ansiYellow": "#FAC03B"
},
"editor.formatOnPaste": true
}
@humayunahmed8
Copy link
Author

code

@humayunahmed8
Copy link
Author

Screenshot_152

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment