Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/japrozs/vscode-config
My VSCode config.Feel free to adopt it if you like it.
https://github.com/japrozs/vscode-config
Last synced: about 1 month ago
JSON representation
My VSCode config.Feel free to adopt it if you like it.
- Host: GitHub
- URL: https://github.com/japrozs/vscode-config
- Owner: japrozs
- Created: 2020-09-03T04:28:33.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-09-29T05:25:56.000Z (over 4 years ago)
- Last Synced: 2024-11-11T05:43:45.881Z (3 months ago)
- Size: 9.77 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# VSCode-config
My VSCode config.Feel free to adopt it if you like it.Copy the config from here
```json
// Theme color Classes can be found here!!!
//https://code.visualstudio.com/api/references/theme-color
{
"workbench.startupEditor": "newUntitledFile",
"workbench.iconTheme": "material-icon-theme",
"editor.formatOnSave": true,
"terminal.integrated.shell.osx": "/bin/zsh",
"window.zoomLevel": 0,
"editor.fontSize": 17,
"explorer.confirmDelete": false,
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"workbench.colorTheme": "Ninja Ui Vibrant",
"explorer.confirmDragAndDrop": false,
"editor.fontFamily": "Menlo, Monaco, 'Courier New', monospace, Menlo",
"workbench.colorCustomizations": {
"inputValidation.errorBackground": "#1D252C",
"inputValidation.errorBorder": "#bbbbbb"
},
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": ["support.constant.property-value.css"],
"settings": {
"foreground": "#4695FF"
}
},
{
"scope": ["constant.numeric"],
"settings": {
"foreground": "#2CC7DA"
}
},
{
"scope": ["keyword.other.unit"],
"settings": {
"foreground": "#2CC7DA"
}
},
{
"scope": ["support.type.property-name"],
"settings": {
"foreground": "#B275FF"
}
},
{
"scope": ["variable.parameter.function"],
"settings": {
"foreground": "#F76693"
}
}
]
}
}```