Skip to content

Instantly share code, notes, and snippets.

@mutablestate
Last active May 18, 2018 02:26
Show Gist options
  • Select an option

  • Save mutablestate/b38fa46d51df7ea190df8d6b6c2673f5 to your computer and use it in GitHub Desktop.

Select an option

Save mutablestate/b38fa46d51df7ea190df8d6b6c2673f5 to your computer and use it in GitHub Desktop.
MBP Retina VSCode settings (Elixir / React dev)

EXTENSIONS LIST

code --list-extensions

LeCrunchic.mariana-nord
PeterJausovec.vscode-docker
Shan.code-settings-sync
Valentin.beamdasm
WallabyJs.quokka-vscode
akamud.vscode-theme-onedark
arcticicestudio.nord-visual-studio-code
burkeholland.simple-react-snippets
castwide.solargraph
cometeer.spacemacs
dbaeumer.vscode-eslint
doublefint.pgsql
esbenp.prettier-vscode
formulahendry.code-runner
karunamurti.haml
mauve.terraform
mechatroner.rainbow-csv
mikestead.dotenv
mjmcloug.vscode-elixir
ms-vscode.node-debug2
ms-vsliveshare.vsliveshare
msjsdiag.debugger-for-chrome
mutablestate.nord-elixir
pgourlain.erlang
pnp.polacode
rebornix.Ruby
sammkj.vscode-elixir-formatter
sbrink.elm
shd101wyy.markdown-preview-enhanced
vscodevim.vim
vsmobile.vscode-react-native
whizkydee.material-palenight-theme
zhuangtongfa.Material-theme```
{
"editor.cursorBlinking": "solid",
"editor.cursorStyle": "block",
"editor.fontFamily": "'LigaHack', 'Droid Sans Mono', 'Courier New', monospace, 'Droid Sans Fallback'",
"editor.fontLigatures": true,
"editor.fontSize": 19,
"editor.fontWeight": "500",
"editor.formatOnSave": true,
"editor.minimap.enabled": false,
"editor.multiCursorModifier": "ctrlCmd",
"editor.renderIndentGuides": false,
"editor.snippetSuggestions": "top",
"editor.tabSize": 2,
"editor.tokenColorCustomizations": {
"[Nord]": {}
},
"explorer.openEditors.visible": 0,
"files.associations": {
"*.snap": "jsonc"
},
"files.defaultLanguage": "markdown",
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/priv/static/js": true,
"**/_build": false,
"**/_deps": true,
"**/deps": true,
"**/node_modules": true,
"**/coverage": true
},
"files.trimTrailingWhitespace": true,
"javascript.validate.enable": false,
"keyboard.dispatch": "keyCode",
"prettier.eslintIntegration": true,
"prettier.singleQuote": true,
"prettier.tabWidth": 2,
"search.location": "panel",
"terminal.integrated.fontFamily": "Hack, 'Droid Sans Mono', 'Courier New', monospace, 'Droid Sans Fallback'",
"terminal.integrated.fontSize": 18,
"terminal.integrated.fontWeightBold": "normal",
"terminal.integrated.lineHeight": 1.2,
"typescript.check.npmIsInstalled": false,
"window.zoomLevel": 0,
"workbench.fontAliasing": "antialiased",
"workbench.iconTheme": "vs-seti",
"workbench.startupEditor": "newUntitledFile",
"workbench.colorTheme": "Nord Elixir"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment