Last active
January 18, 2019 03:46
-
-
Save haleyrc/b443e7ac5b3c7fab809f3d50a1f27fbf to your computer and use it in GitHub Desktop.
VS Code Settings
This file contains hidden or 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.fontWeight": "400", | |
"workbench.iconTheme": "vs-seti", | |
"editor.rulers": [80, 100], | |
"editor.minimap.enabled": false, | |
"editor.fontLigatures": true, | |
"explorer.openEditors.visible": 0, | |
"terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe", | |
"terminal.integrated.shellArgs.windows": [ | |
"--init-file", | |
"C:\\Program Files\\Git\\etc\\profile" | |
], | |
"files.eol": "\n", | |
"editor.detectIndentation": false, | |
"html.format.enable": false, | |
"editor.tabSize": 4, | |
"prettier.tabWidth": 2, | |
"prettier.singleQuote": false, | |
"prettier.semi": false, | |
"prettier.useTabs": false, | |
"prettier.printWidth": 80, | |
"editor.lineNumbers": "relative", | |
"git.confirmSync": false, | |
"editor.lineHeight": 28, | |
"editor.fontSize": 20, | |
"workbench.colorCustomizations": { | |
"editorIndentGuide.activeBackground": "#ff5fff", | |
"editor.background": "#1e1f25", | |
"editor.foreground": "#a2a8ad", | |
"sideBar.background": "#1e1f25", | |
"sideBar.border": "#a2a8ad", | |
"sideBar.foreground": "#a2a8ad", | |
"selection.background": "#f0c674", | |
"editor.selectionBackground": "#58678C", | |
"activityBar.background": "#1e1f25", | |
"activityBar.border": "#a2a8ad", | |
"activityBar.foreground": "#ff5fff", | |
"activityBarBadge.background": "#54ca91", | |
"activityBarBadge.foreground": "#1e1f25", | |
"statusBar.background": "#1e1f25", | |
"statusBar.border": "#a2a8ad" | |
}, | |
"editor.tokenColorCustomizations": { | |
"comments": "#caccd7", | |
"functions": "#00ffff", | |
"keywords": "#ff5fff", | |
"numbers": "#af00d7", | |
"strings": "#54ca91", | |
"types": "#ff5f00", | |
"variables": "#ff5f00" | |
}, | |
"editor.acceptSuggestionOnEnter": "off", | |
"editor.acceptSuggestionOnCommitCharacter": false, | |
"editor.renderWhitespace": "all", | |
"markdown.preview.scrollEditorWithPreview": false, | |
"todohighlight.keywordsPattern": "TODO:|TODO \\([a-zA-Z]+\\):", | |
"extensions.ignoreRecommendations": false, | |
"explorer.confirmDragAndDrop": false, | |
"go.docsTool": "gogetdoc", | |
"liveServer.settings.donotVerifyTags": true, | |
"liveServer.settings.donotShowInfoMsg": true, | |
"gitlens.keymap": "alternate", | |
"latex-workshop.view.pdf.viewer": "tab", | |
"diffEditor.ignoreTrimWhitespace": true, | |
"gitlens.gitExplorer.files.layout": "tree", | |
"gitlens.historyExplorer.enabled": true, | |
"files.exclude": { | |
"**/.git": true, | |
"**/.svn": true, | |
"**/.hg": true, | |
"**/CVS": true, | |
"**/.DS_Store": true, | |
"**/*.clw": true, | |
"**/*.inc": true, | |
"**/*.INC": true, | |
"**/*.TPS": true, | |
"**/*.tps": true | |
}, | |
"go.testFlags": ["-v"], | |
"go.formatFlags": ["-w"], | |
"editor.formatOnSave": true, | |
"go.formatTool": "goreturns", | |
"terminal.external.linuxExec": "gnome-terminal", | |
"terminal.integrated.fontSize": 18, | |
"terminal.integrated.shell.linux": "/bin/zsh", | |
"terminal.integrated.lineHeight": 1.2, | |
"react-native-tools.logLevel": "Debug", | |
"prettier.arrowParens": "always", | |
"html.format.wrapLineLength": 80, | |
"javascript.format.enable": false, | |
"typescript.format.enable": true, | |
"vetur.format.defaultFormatter.html": "none", | |
"eslint.alwaysShowStatus": true, | |
"eslint.autoFixOnSave": true, | |
"eslint.packageManager": "yarn", | |
"gitlens.advanced.messages": { | |
"suppressShowKeyBindingsNotice": true | |
}, | |
"editor.fontFamily": "\"Go Mono\"", | |
"go.useCodeSnippetsOnFunctionSuggest": true, | |
"go.useLanguageServer": false, | |
"python.formatting.provider": "none", | |
"editor.parameterHints.enabled": false, | |
"editor.snippetSuggestions": "top" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment