Skip to content

Instantly share code, notes, and snippets.

@saniyathossain
Created June 28, 2020 04:11
Show Gist options
  • Select an option

  • Save saniyathossain/6807ef1f142a3d8ebca2d5eaecf5e029 to your computer and use it in GitHub Desktop.

Select an option

Save saniyathossain/6807ef1f142a3d8ebca2d5eaecf5e029 to your computer and use it in GitHub Desktop.
VS Code Settings
{
"editor.fontFamily": "JetBrains Mono",
"editor.fontSize": 15,
"editor.fontLigatures": true,
"files.trimTrailingWhitespace": true,
"editor.wordWrap": "off",
"editor.formatOnPaste": false,
"editor.multiCursorModifier": "ctrlCmd",
"editor.snippetSuggestions": "top",
"editor.cursorStyle": "line-thin",
"workbench.iconTheme": "material-icon-theme",
"editor.smoothScrolling": true,
"workbench.list.horizontalScrolling": true,
"editor.cursorBlinking": "smooth",
"editor.cursorSmoothCaretAnimation": true,
"debug.console.fontSize": 14,
"markdown.preview.fontSize": 14,
"terminal.integrated.fontSize": 14,
"terminal.integrated.fontWeightBold": "normal",
"php.suggest.basic": false,
// "php.validate.executablePath": "D:\\app\\php\\php-7.4.4",
"files.exclude": {
"**/.git": true,
"**/.DS_Store": true,
"**/.vscode": true,
"**/__pycache__": true,
"**/.pytest_cache": true,
"**/node_modules": true,
"node_modules": true,
"venv": true,
"*.sublime-*": true,
"env*": true
},
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/env": true,
"**/venv": true
},
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/node_modules/**": true,
"**/env/**": true,
"**/venv/**": true,
"env-*": true
},
"diffEditor.ignoreTrimWhitespace": false,
"window.zoomLevel": 0,
"terminal.integrated.rendererType": "dom",
"editor.quickSuggestions": true,
"extensions.autoUpdate": true,
"workbench.colorTheme": "Ayu Mirage",
"gitlens.currentLine.dateFormat": ""
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment