Created
March 26, 2019 09:42
-
-
Save Mfalm3/547fdf2696a760a71a569b2741deb393 to your computer and use it in GitHub Desktop.
My Preferred settings for VS Code
This file contains 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
{ | |
"[python]": { | |
"editor.rulers": [ | |
79, | |
120 | |
] | |
}, | |
"beautify.language": { | |
"js": { | |
"type": ["javascript", "json", "jsonc"], | |
"filename": [".jshintrc", ".jsbeautifyrc"] | |
}, | |
"css": ["css", "scss"], | |
"html": ["htm", "html", "blade"] | |
}, | |
"blade.format.enable":true, | |
"breadcrumbs.enabled": true, | |
"editor.fontSize": 16, | |
"editor.multiCursorModifier": "ctrlCmd", | |
"editor.wordWrap": "wordWrapColumn", | |
"editor.smoothScrolling": true, | |
"editor.tabCompletion": "on", | |
"editor.formatOnPaste": true, | |
"editor.snippetSuggestions": "top", | |
"editor.wordWrapColumn": 79, | |
"editor.fontFamily": "Fira Code", | |
"editor.fontLigatures": true, | |
"editor.autoIndent": true, | |
"editor.minimap.enabled": false, | |
"emmet.showSuggestionsAsSnippets": true, | |
"emmet.triggerExpansionOnTab": true, | |
"emmet.excludeLanguages": [ | |
"markdown", | |
"php" | |
], | |
"emmet.includeLanguages": { | |
"blade": "html" | |
}, | |
"explorer.openEditors.visible": 0, | |
"files.associations": { | |
"*.html": "html" | |
}, | |
"files.autoSave": "afterDelay", | |
"files.autoSaveDelay": 5000, | |
"files.exclude": { | |
"**/__pycache__": true, | |
".idea/": true, | |
".pytest_cache": true, | |
".vscode": true | |
}, | |
"html-css-class-completion.enableEmmetSupport": true, | |
"liveServer.settings.donotShowInfoMsg": true, | |
"php.suggest.basic": false, | |
"php.validate.enable": false, | |
"python.jediEnabled": false, | |
"terminal.integrated.rendererType": "dom", | |
"update.enableWindowsBackgroundUpdates": false, | |
"update.channel": "none", | |
"update.showReleaseNotes": false, | |
"window.zoomLevel": 1, | |
"window.title": "${activeEditorLong}${separator}${rootName}", | |
"workbench.iconTheme": "vscode-icons", | |
"workbench.sideBar.location": "left", | |
"workbench.colorCustomizations": { | |
"sideBar.border": "#23ace6", | |
"activityBar.border": "#23ace6" | |
}, | |
"workbench.editor.labelFormat":"medium", | |
"workbench.statusBar.feedback.visible": false, | |
"workbench.colorTheme": "Monokai", | |
"vsicons.dontShowNewVersionMessage": true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment