Created
March 12, 2018 02:32
-
-
Save vnpnlz/2e97966f0c5ed7285ddd89025b90b585 to your computer and use it in GitHub Desktop.
VS Code Personal Settings
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
{ | |
"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", | |
"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" | |
}, | |
"editor.fontFamily": "Fira Code", | |
"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", | |
"sublimeTextKeymap.promptV3Features": true, | |
"editor.multiCursorModifier": "ctrlCmd", | |
"editor.snippetSuggestions": "top", | |
"editor.formatOnPaste": true, | |
"window.zoomLevel": 1, | |
"workbench.startupEditor": "newUntitledFile", | |
"gitlens.advanced.messages": { | |
"suppressCommitHasNoPreviousCommitWarning": false, | |
"suppressCommitNotFoundWarning": false, | |
"suppressFileNotUnderSourceControlWarning": false, | |
"suppressGitVersionWarning": false, | |
"suppressLineUncommittedWarning": false, | |
"suppressNoRepositoryWarning": false, | |
"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": "alternate", | |
"explorer.confirmDragAndDrop": false, | |
"explorer.openEditors.visible": 0 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment