Skip to content

Instantly share code, notes, and snippets.

@Kelfitas
Last active August 26, 2019 10:14
Show Gist options
  • Save Kelfitas/6ba1c789d05b12b22566980b6bdec39a to your computer and use it in GitHub Desktop.
Save Kelfitas/6ba1c789d05b12b22566980b6bdec39a to your computer and use it in GitHub Desktop.
{
"workbench.colorTheme": "Sublime Material Theme - Dark",
"workbench.colorCustomizations": {
"statusBar.background": "#333"
},
"workbench.editor.showIcons": true,
"workbench.editor.enablePreview": true,
"workbench.editor.closeOnFileDelete": true,
"editor.rulers": [80, 90, 100],
"editor.tabSize": 4,
"editor.insertSpaces": true,
"editor.detectIndentation": true,
"editor.scrollBeyondLastLine": true,
"editor.minimap.enabled": true,
"editor.minimap.renderCharacters": true,
"editor.minimap.maxColumn": 120,
"editor.wordWrap": "off",
"editor.selectionHighlight": true,
"editor.cursorBlinking": "blink",
"editor.fontLigatures": true,
"editor.matchBrackets": true,
"editor.fontFamily": "Hack",
"editor.fontSize": 11,
"editor.lineNumbers": "relative",
"diffEditor.renderSideBySide": true,
"diffEditor.renderIndicators": true,
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true
},
"files.encoding": "utf8",
"files.eol": "\n",
"files.trimTrailingWhitespace": false,
"files.insertFinalNewline": false,
"explorer.autoReveal": true,
"explorer.enableDragAndDrop": true,
"scss.validate": true,
"scss.colorDecorators.enable": true,
"scss.lint.duplicateProperties": "warning",
"scss.lint.universalSelector": "warning",
"scss.lint.fontFaceProperties": "warning",
"scss.lint.hexColorLength": "error",
"scss.lint.argumentsInColorFunction": "error",
"scss.lint.unknownProperties": "error",
"scss.lint.important": "warning",
"scss.lint.float": "warning",
"scss.lint.idSelector": "warning",
"html.format.enable": true,
"html.format.endWithNewline": true,
"html.suggest.html5": true,
"json.format.enable": true,
"markdown.preview.scrollPreviewWithEditorSelection": true,
"markdown.preview.markEditorSelection": true,
"markdown.preview.scrollEditorWithPreview": true,
"php.suggest.basic": true,
"php.validate.enable": true,
"terminal.integrated.shell.osx": "/bin/zsh",
"terminal.integrated.shellArgs.osx": [
"-l"
],
"terminal.integrated.cursorBlinking": true,
"telemetry.enableTelemetry": false,
"telemetry.enableCrashReporter": false,
"python.venvPath": "./",
"python.linting.enabled": true,
"python.linting.enabledWithoutWorkspace": false,
"python.linting.pep8Enabled": true,
"python.linting.pep8Path": "pep8",
"python.linting.pep8Args": [],
"python.linting.lintOnTextChange": true,
"python.linting.maxNumberOfProblems": 20,
"python.formatting.provider": "autopep8",
"python.formatting.autopep8Path": "autopep8",
"python.formatting.autopep8Args": [],
"python.formatting.outputWindow": "Python",
"python.linting.ignorePatterns": [
".vscode/*.py",
"**/site-packages/**/*.py"
],
"git.enabled": true,
"git.autofetch": true,
"gulp.autoDetect": "on",
"workbench.iconTheme": "vs-seti",
"window.zoomLevel": 0,
"[makefile]": {
"editor.insertSpaces": false
},
"sublimeTextKeymap.promptV3Features": true,
"editor.multiCursorModifier": "ctrlCmd",
"editor.snippetSuggestions": "top",
"editor.formatOnPaste": false,
"explorer.confirmDragAndDrop": false,
"[html]": {},
"go.autocompleteUnimportedPackages": true,
"[go]": {
"editor.insertSpaces": false,
"editor.formatOnSave": false
},
"workbench.panel.location": "bottom",
"search.useIgnoreFiles": false,
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/.venv": true,
"**/.Python": true,
"**/.eggs": true,
"**/.installed.cfg": true,
"**/.tox": true,
"**/.coverage": true,
"**/.coverage.*": true,
"**/.cache": true,
"**/.hypothesis": true,
"**/.webassets-cache": true,
"**/.scrapy": true,
"**/.ipynb_checkpoints": true,
"**/.python-version": true,
"**/.env": true,
"**/.spyderproject": true,
"**/.ropeproject": true,
"**/.DS_Store?": true,
"**/.DS_Store": true,
"**/.svn": true,
"**/.idea": true,
"**/.vscode": true,
"**/vendor": true,
"**/.glide": true,
"**/bin": true
},
"gitlens.advanced.messages": {
"suppressShowKeyBindingsNotice": true
},
"vim.useSystemClipboard": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment