Created
August 17, 2022 03:45
-
-
Save philiplambok/7218a29104eca64ef08761700c086cd5 to your computer and use it in GitHub Desktop.
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.fontFamily": "Comic Mono, IBM Plex Mono, Jetbrains Mono, Dank Mono, Menlo, Monaco, 'Courier New', monospace", | |
"workbench.iconTheme": "vscode-icons", | |
"workbench.editor.showTabs": false, | |
"workbench.statusBar.visible": false, | |
"editor.minimap.enabled": false, | |
"editor.tabSize": 2, | |
// "plantuml.server": "https://www.plantuml.com", | |
// "plantuml.render": "PlantUMLServer", | |
// "ruby.useLanguageServer": true, | |
// "ruby.lint": { | |
// "ruby": true, | |
// "rubocop": { | |
// "path": "/Users/philiplambok/.rbenv/shims/" | |
// } | |
// }, | |
// "ruby.rubocop.onSave": false, | |
// "editor.formatOnSaveTimeout": false, | |
// "editor.formatOnSave": false, | |
"files.associations": { | |
"*.erb": "erb" | |
}, | |
// "[ruby]": { | |
// "editor.defaultFormatter": "misogi.ruby-rubocop", | |
// "editor.formatOnSave": true | |
// }, | |
"emmet.includeLanguages": { | |
"erb": "html" | |
}, | |
"workbench.sideBar.location": "right", | |
"workbench.startupEditor": "newUntitledFile", | |
"prettier.disableLanguages": [ | |
"js", | |
"jsx", | |
"rb" | |
], | |
"editor.codeActionsOnSave": { | |
// For ESLint | |
"source.fixAll.eslint": true, | |
// For TSLint | |
"source.fixAll.tslint": true | |
}, | |
"vsnotes.defaultNotePath": "/Users/philiplambok/Documents/vsnotes", | |
"vsicons.dontShowNewVersionMessage": true, | |
// For Stylelint | |
// "stylelint.autoFixOnSave": false, | |
"workbench.colorCustomizations": { | |
"terminal.ansiBrightCyan": "#EE64AE", | |
}, | |
"vsicons.presets.hideExplorerArrows": true, | |
"editor.suggestSelection": "first", | |
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue", | |
"files.exclude": { | |
"**/.classpath": true, | |
"**/.project": true, | |
"**/.settings": true, | |
"**/.factorypath": true | |
}, | |
"json.maxItemsComputed": 50000000, | |
"workbench.editor.untitled.hint": "hidden", | |
"git.enableSmartCommit": true, | |
"redhat.telemetry.enabled": false, | |
"todoist.apiToken": "2cd8ad5c0440ad049540257a5af82e4aca61d02e", | |
"todoist.projectId": 2218966076, | |
"security.workspace.trust.untrustedFiles": "open", | |
"bracket-pair-colorizer-2.depreciation-notice": false, | |
"solargraph.commandPath": "/usr/local/var/rbenv/shims/solargraph", | |
"solargraph.transport": "stdio", | |
"editor.wordWrap": "on", | |
"workbench.colorTheme": "GitHub Dark", | |
"window.zoomLevel": -1, | |
"editor.columnSelection": true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment