Skip to content

Instantly share code, notes, and snippets.

@saniyathossain
Created August 4, 2022 07:12
Show Gist options
  • Save saniyathossain/1b572f2c4faf0e5dbc1adb3fe723d35a to your computer and use it in GitHub Desktop.
Save saniyathossain/1b572f2c4faf0e5dbc1adb3fe723d35a to your computer and use it in GitHub Desktop.
vsc settings
{
"debug.console.fontSize": 14,
"editor.autoIndent": "advanced",
"editor.cursorBlinking": "smooth",
"editor.cursorSmoothCaretAnimation": true,
"editor.cursorStyle": "line-thin",
"editor.fontFamily": "Meslo LG S for Powerline, IBM Plex Mono, JetBrainsMono Nerd Font Mono",
"editor.fontLigatures": true,
"editor.fontSize": 15,
"editor.formatOnPaste": false,
"editor.gotoLocation.multipleDefinitions": "goto",
"editor.multiCursorModifier": "ctrlCmd",
"editor.quickSuggestions": {
"comments": "on",
"strings": "on",
"other": "on"
},
"editor.smoothScrolling": true,
"editor.snippetSuggestions": "top",
"editor.wordWrap": "off",
"extensions.autoUpdate": true,
"files.exclude": {
"**/.DS_Store": true,
"**/.git": true,
"**/.pytest_cache": true,
"**/.vscode": true,
"**/__pycache__": true,
"**/node_modules": true,
"*.sublime-*": true,
"env*": true,
"node_modules": true,
"venv": true
},
"files.trimTrailingWhitespace": true,
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/env/**": true,
"**/node_modules/**": true,
"**/vendor/**": true,
"**/venv/**": true,
"env-*": true
},
"git.showPushSuccessNotification": true,
"gitlens.currentLine.dateFormat": "",
"intelephense.completion.fullyQualifyGlobalConstantsAndFunctions": true,
"intelephense.completion.insertUseDeclaration": true,
"intelephense.completion.triggerParameterHints": true,
"intelephense.files.exclude": [
"**/.DS_Store/**",
"**/.git/**",
"**/.hg/**",
"**/.svn/**",
"**/CVS/**",
"**/bower_components/**",
"**/database/migrations/**",
"**/node_modules/**",
"**/resources/views/**",
"**/storage",
"**/storage/**",
"**/storage/framework/views/**",
"**/tests/**",
"_ide_helper.php",
"_ide_helper_models"
],
"intelephense.format.enable": true,
"intelephense.telemetry.enabled": true,
"intelephense.trace.server": "messages",
"markdown.preview.fontSize": 14,
"php-docblocker.qualifyClassNames": true,
"php-docblocker.returnGap": true,
"php.suggest.basic": false,
"php.validate.enable": true,
"php.validate.run": "onSave",
"search.exclude": {
"**/.git": true,
"**/bower_components": true,
"**/env": true,
"**/node_modules": true,
"**/storage": true,
"**/tests": true,
"**/venv": true,
"_ide_helper.php": true,
"_ide_helper_models.php": true,
"package-lock.json": true
},
"terminal.integrated.cursorStyle": "line",
"terminal.integrated.fontFamily": "JetBrainsMono Nerd Font Mono",
"terminal.integrated.fontSize": 14,
"terminal.integrated.fontWeightBold": "normal",
"terminal.integrated.localEchoLatencyThreshold": 0,
"terminal.integrated.localEchoStyle": "dim",
"terminal.integrated.rendererType": "dom",
"workbench.editor.enablePreview": true,
"workbench.editor.enablePreviewFromQuickOpen": true,
"workbench.iconTheme": "material-icon-theme",
"workbench.list.horizontalScrolling": true,
"tabnine.experimentalAutoImports": true,
"workbench.editor.decorations.badges": true,
"workbench.editor.wrapTabs": false,
"launch": {
"configurations": [],
"compounds": []
},
"workbench.productIconTheme": "fluent-icons",
"workbench.startupEditor": "welcomePage",
"redhat.telemetry.enabled": false,
"security.workspace.trust.enabled": false,
"window.commandCenter": true,
"diffEditor.ignoreTrimWhitespace": false,
"glassit.alpha": 240,
"glassit.step": 10,
"workbench.colorTheme": "Serendipity Midnight",
"editor.codeActionsOnSave": {}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment