Skip to content

Instantly share code, notes, and snippets.

@vnpnlz
Created May 25, 2018 01:22
Show Gist options
  • Save vnpnlz/0e393dd772779a8a7b9195750f461efc to your computer and use it in GitHub Desktop.
Save vnpnlz/0e393dd772779a8a7b9195750f461efc to your computer and use it in GitHub Desktop.
VSCode Settings
{
"editor.fontLigatures": true,
// "vscode_custom_css.imports": ["file://home/ins-von/Templates/style.css"],
"editor.insertSpaces": true,
"editor.tabSize": 4,
"editor.renderWhitespace": "all",
"editor.renderIndentGuides": true,
"editor.rulers": [79],
"editor.cursorStyle": "line",
"editor.snippetSuggestions": "top",
"editor.formatOnPaste": true,
"editor.fontFamily": "Fira Code",
"telemetry.enableTelemetry": false,
"terminal.integrated.cursorBlinking": true,
"terminal.integrated.scrollback": 10000,
"terminal.external.osxExec": "iTerm.app",
"terminal.external.linuxExec": "guake",
"editor.fontSize": 14,
"files.exclude": {
"**/.git" : true,
"**/.svn" : true,
"**/.hg" : true,
"**/.DS_Store" : true,
"**/.github" : true,
"**/*.pyc" : true,
"**/*.egg-info" : true,
"**/.python-version" : true,
"**/__pycache__/**" : true,
"**/.cache" : true,
"**/build" : false,
"**/.tox" : true,
"**/.kitchen" : true,
"**/.vagrant" : true,
"**/venv" : true,
"**/codealike.json" : true,
".vscode/": true
},
"python.linting.lintOnSave": true,
"files.autoSave": "onFocusChange",
"python.linting.pylintEnabled": false,
"python.linting.flake8Enabled": true,
"python.unitTest.unittestEnabled": false,
"python.unitTest.pyTestEnabled": false,
"python.autoComplete.addBrackets": true,
"workbench.iconTheme": "material-icon-theme",
"editor.minimap.enabled": true,
"workbench.colorCustomizations": {
"statusBar.background": "#353942",
"statusBar.foreground": "#a7a7a7",
"statusBarItem.hoverBackground": "#282c30",
"editorWhitespace.foreground": "#5a534d",
"editorCursor.foreground": "#73fa04",
"editorLineNumber.foreground": "#ff3399",
"activityBarBadge.background": "#FF4081",
"list.activeSelectionForeground": "#FF4081",
"list.inactiveSelectionForeground": "#FF4081",
"list.highlightForeground": "#FF4081",
"scrollbarSlider.activeBackground": "#FF408150",
"editorSuggestWidget.highlightForeground": "#FF4081",
"textLink.foreground": "#FF4081",
"progressBar.background": "#FF4081",
"pickerGroup.foreground": "#FF4081",
"tab.activeBorder": "#FF4081",
"tab.activeBackground": "#282c34",
"activityBar.background": "#282c34",
"editorGroup.background": "#282c34",
"sideBar.background": "#282c35",
"editorLineNumber.activeForeground": "#48ff00"
},
"materialTheme.cache.workbench.settings": {
"themeColours": "Palenight",
"accent": "Pink",
"accentPrevious": "Cyan"
},
"workbench.colorTheme": "One Dark Pro Vivid",
"git.confirmSync": false,
"material-icon-theme.showUpdateMessage": false,
"window.restoreWindows": "none",
"editor.multiCursorModifier": "ctrlCmd",
"window.zoomLevel": 0,
"workbench.startupEditor": "newUntitledFile",
"gitlens.advanced.messages": {
"suppressCommitHasNoPreviousCommitWarning": false,
"suppressCommitNotFoundWarning": false,
"suppressFileNotUnderSourceControlWarning": false,
"suppressGitVersionWarning": false,
"suppressLineUncommittedWarning": false,
"suppressNoRepositoryWarning": false,
"suppressResultsExplorerNotice": false,
"suppressShowKeyBindingsNotice": true,
"suppressUpdateNotice": true,
"suppressWelcomeNotice": true
},
"gitlens.codeLens.recentChange.enabled": false,
"gitlens.codeLens.authors.enabled": false,
"git.autofetch": true,
"explorer.confirmDelete": false,
"python.formatting.provider": "none",
"extensions.ignoreRecommendations": false,
"gitlens.keymap": "none",
"explorer.confirmDragAndDrop": false,
"explorer.openEditors.visible": 0,
"markdown.preview.scrollEditorWithPreview": true,
"markdown.preview.scrollPreviewWithEditor": true,
"gitlens.historyExplorer.enabled": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment