Skip to content

Instantly share code, notes, and snippets.

@gustavomedeiross
Created October 14, 2020 13:59
Show Gist options
  • Save gustavomedeiross/b1434d53d52b3d52ff0f20d001754828 to your computer and use it in GitHub Desktop.
Save gustavomedeiross/b1434d53d52b3d52ff0f20d001754828 to your computer and use it in GitHub Desktop.
settings.json (vscode)
{
//Styles and Font Size of the editor (General)
"workbench.iconTheme": "material-icon-theme",
// "workbench.colorTheme": "One Dark Pro",
"editor.fontSize": 12,
"terminal.integrated.fontSize": 12,
"window.titleBarStyle": "custom",
"editor.tabSize": 2,
"editor.cursorStyle": "block",
"editor.acceptSuggestionOnEnter": "off",
"explorer.compactFolders": false,
"workbench.colorCustomizations": {
"editorCursor.foreground": "#99989A"
},
//General Editor Behaviors
"html.autoClosingTags": false,
"workbench.editor.enablePreview": false,
"workbench.editor.enablePreviewFromQuickOpen": false,
"explorer.confirmDragAndDrop": false,
"javascript.updateImportsOnFileMove.enabled": "never",
// "javascript.suggest.autoImports": false,
// "typescript.suggest.autoImports": false,
//Emmet
"emmet.syntaxProfiles": {
"javascript": "jsx",
"typescript": "tsx"
},
"emmet.includeLanguages": {
"javascript": "javascriptreact",
"typescript": "typescriptreact"
},
//ESLint & Prettier
"editor.formatOnSave": true,
"[elixir]": {
"editor.formatOnSave": false
},
"[typescript]": {
"editor.formatOnSave": false
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.rulers": [80, 120],
// "editor.parameterHints.enabled": false, //Parameter Hints
//ESLint
"eslint.validate": ["javascript", "typescript"],
"typescript.updateImportsOnFileMove.enabled": "always",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
// === VIM ===
"vim.handleKeys": {
"<C-b>": false,
"<C-p>": false,
"<C-a>": false
},
"vim.insertModeKeyBindings": [
{
"before": ["j", "k"],
"after": ["<esc>"]
}
],
"dart.debugExternalLibraries": true,
"dart.debugSdkLibraries": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment