Last active
January 2, 2021 06:23
-
-
Save philiplambok/c56c49d121362aaa291141769c36adeb to your computer and use it in GitHub Desktop.
vs 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.fontFamily": "Jetbrains Mono, Dank Mono, Menlo, Monaco, 'Courier New', monospace", | |
"workbench.iconTheme": "material-icon-theme", | |
"workbench.activityBar.visible": false, | |
"workbench.editor.showTabs": false, | |
"workbench.statusBar.visible": false, | |
"editor.minimap.enabled": false, | |
"window.zoomLevel": 1, | |
"editor.tabSize": 2, | |
"ruby.useLanguageServer": true, | |
"ruby.lint": { | |
"ruby": true | |
}, | |
"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" | |
], | |
"editor.codeActionsOnSave": { | |
// For ESLint | |
"source.fixAll.eslint": true, | |
// For TSLint | |
"source.fixAll.tslint": true | |
}, | |
"vsnotes.defaultNotePath": "/Users/philiplambok/Documents/vsnotes", | |
"vsicons.dontShowNewVersionMessage": true, | |
"workbench.colorTheme": "Pop N' Lock Theme by Luxcium ✨", | |
// For Stylelint | |
// "stylelint.autoFixOnSave": false, | |
"workbench.colorCustomizations": { | |
"terminal.ansiBrightCyan": "#EE64AE", | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment