Last active
April 26, 2021 08:46
-
-
Save boobo94/3a454d9739c2ad88aec96abd4a4444ee to your computer and use it in GitHub Desktop.
vscode settings
This file contains 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
## Display all extensions used | |
```bash | |
$ code --list-extensions | xargs -L 1 echo code --install-extension | |
``` | |
## List | |
``` | |
code --install-extension aeschli.vscode-css-formatter | |
code --install-extension bmewburn.vscode-intelephense-client | |
code --install-extension CoenraadS.bracket-pair-colorizer | |
code --install-extension dbaeumer.vscode-eslint | |
code --install-extension donjayamanne.githistory | |
code --install-extension eamodio.gitlens | |
code --install-extension EditorConfig.EditorConfig | |
code --install-extension golang.go | |
code --install-extension Gruntfuggly.todo-tree | |
code --install-extension johnpapa.vscode-peacock | |
code --install-extension ms-azuretools.vscode-docker | |
code --install-extension ms-vscode.vscode-typescript-tslint-plugin | |
code --install-extension octref.vetur | |
code --install-extension oderwat.indent-rainbow | |
code --install-extension redhat.vscode-yaml | |
code --install-extension softwaredotcom.swdc-vscode | |
code --install-extension vscode-icons-team.vscode-icons | |
code --install-extension wix.vscode-import-cost | |
code --install-extension zhuangtongfa.material-theme | |
``` |
This file contains 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.minimap.enabled": false, | |
"explorer.openEditors.visible": 0, | |
"git.autofetch": true, | |
"workbench.colorCustomizations": { | |
"terminal.ansiBlue": "#61afef", | |
"terminal.ansiBrightBlack": "#7f848e", | |
"terminal.ansiBrightBlue": "#528bff", | |
"terminal.ansiBrightCyan": "#56b6c2", | |
"terminal.ansiBrightGreen": "#98c379", | |
"terminal.ansiBrightMagenta": "#7e0097", | |
"terminal.ansiBrightRed": "#f44747", | |
"terminal.ansiBrightWhite": "#d7dae0", | |
"terminal.ansiBrightYellow": "#e5c07b", | |
"terminal.ansiCyan": "#56b6c2", | |
"terminal.ansiGreen": "#98c379", | |
"terminal.ansiMagenta": "#c678dd", | |
"terminal.ansiRed": "#e06c75", | |
"terminal.ansiWhite": "#d7dae0", | |
"terminal.ansiYellow": "#e5c07b", | |
}, | |
"workbench.iconTheme": "vscode-icons", | |
"todo-tree.highlights.customHighlight": { | |
"TODO": { | |
"background": "#00b248", | |
"foreground": "#66ffa6", | |
"icon": "checklist", | |
"type": "text" | |
}, | |
"FIXME": { | |
"background": "#c79400", | |
"foreground": "#fff64f", | |
"icon": "alert", | |
"type": "text" | |
} | |
}, | |
"todo-tree.regex.regexCaseSensitive": false, | |
"todo-tree.filtering.excludeGlobs": [ | |
"**/node_modules/**" | |
], | |
"editor.codeActionsOnSave": { | |
"source.fixAll": true | |
}, | |
"todo-tree.tree.showScanModeButton": false, | |
"workbench.colorTheme": "One Dark Pro", | |
"window.zoomLevel": -1, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment