0% found this document useful (0 votes)
39 views

Vscode Settings

This document contains VS Code editor configuration settings that define font styles, color themes, formatting preferences, and other editor options. Key settings include formatting code on save, using Prettier for formatting JavaScript and JSON, configuring font styles like italic for comments and keywords, and settings for the Live Sass compiler.

Uploaded by

vonimi
Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
39 views

Vscode Settings

This document contains VS Code editor configuration settings that define font styles, color themes, formatting preferences, and other editor options. Key settings include formatting code on save, using Prettier for formatting JavaScript and JSON, configuring font styles like italic for comments and keywords, and settings for the Live Sass compiler.

Uploaded by

vonimi
Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 5

{

"workbench.colorTheme": "Default Dark+",


"workbench.iconTheme": "material-icon-theme",
"editor.fontFamily": "'MonoLisa','Dank Mono', 'Noto Mono', 'Droid Sans Mono',
'Courier New', monospace, 'Droid Sans Fallback'",
"editor.fontLigatures": true,
"editor.fontWeight": "400" ,// Regular
"editor.lineHeight": 0,
"editor.fontSize": 18,
"debug.console.fontFamily": "'MonoLisa'",
"debug.console.fontSize": 16,
"editor.tokenColorCustomizations": {
"textMateRules": [{
"name": "Comment",
"scope": [
"comment",
"punctuation.definition.comment"
],
"settings": {
"fontStyle": "italic",
//"foreground": "#4A4A4A"
}
},

{
"name": "Keyword, Storage",
"scope": [
"Keyword",
"Storage"
],
"settings": {
"fontStyle": "italic"
}
},

{
"name": "Keyword Control",
"scope": [
"keyword.control"
],
"settings": {
"fontStyle": "italic"
}
},

{
"scope": "entity.other.attribute-name",
"settings": {
"fontStyle": "italic",
//"foreground": "#78dce8"
}
},

{
"name": "entity.name.method.js",
"scope": [
"entity.name.method.js"
],
"settings": {
"fontStyle": "italic",
//"foreground": "#82AAFF"
}
},

{
"name": "Language methods",
"scope": [
"variable.language"
],
"settings": {
"fontStyle": "italic",
//"foreground": "#FF5370"
}
},

{
"name": "HTML Attributes",
"scope": [
"text.html.basic entity.other.attribute-name.html",
"text.html.basic entity.other.attribute-name"
],
"settings": {
"fontStyle": "italic",
//"foreground": "#FFCB6B"
}
},

{
"name": "Decorators",
"scope": [
"tag.decorator.js entity.name.tag.js",
"tag.decorator.js punctuation.definition.tag.js"
],
"settings": {
"fontStyle": "italic",
//"foreground": "#82AAFF"
}
},

{
"name": "ES7 Bind Operator",
"scope": [
"source.js constant.other.object.key.js
string.unquoted.label.js"
],
"settings": {
"fontStyle": "italic",
//"foreground": "#FF5370"
}
},

{
"name": "Markup - Italic",
"scope": [
"markup.italic"
],
"settings": {
"fontStyle": "italic",
//"foreground": "#f07178"
}
},

{
"name": "Markup - Bold-Italic",
"scope": [
"markup.bold markup.italic",
"markup.italic markup.bold",
"markup.quote markup.bold",
"markup.bold markup.italic string",
"markup.italic markup.bold string",
"markup.quote markup.bold string"
],
"settings": {
"fontStyle": "bold",
//"foreground": "#f07178"
}
},

{
"name": "Markup - Quote",
"scope": [
"markup.quote"
],
"settings": {
"fontStyle": "italic",
//"foreground": ""
}
},
{
"scope": "variable.other",
"settings": {
"foreground": "#82fbff"
}
},
{
"scope": "entity.name.function",
"settings": {
"foreground": "#dfd9a8"
}
},
{
"scope": "support.function",
"settings": {
"fontStyle": "italic",
"foreground": "#dfd9a8"
}
},
{
"scope": "string",
"settings": {
"foreground": "#CE9178"
}
},
]
},
"editor.mouseWheelZoom": true,
"git.autofetch": true,
"gitlens.advanced.messages": {
"suppressCreatePullRequestPrompt": true
},
"diffEditor.ignoreTrimWhitespace": false,
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"files.insertFinalNewline": true,
"editor.wordWrap": "on",
"emmet.syntaxProfiles": {
"javascript": "jsx"
},
// As of VS Code 1.15
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
"editor.minimap.enabled": false,
"editor.formatOnSave": true,
"javascript.format.enable": true,
"prettier.singleQuote": false,
"prettier.eslint": true,
"prettier.tabWidth": 2,
"search.exclude": {
".git": true,
".hg": true,
".svn": true,
"CVS": true
},
"editor.formatOnPaste": true,
"files.autoSave": "onFocusChange",
"editor.tabSize": 2,
"files.trimTrailingWhitespace": true,
"liveSassCompile.settings.formats": [
{
"format": "expanded",
"extensionName": ".css",
"savePath": null
},
{
"format": "compressed",
"extensionName": ".min.css",
"savePath": "/dist/css"
},
{
"format": "compressed",
"extensionName": ".min.css",
"savePath": "~/../css/"
}
],
"window.zoomLevel": -1,
"editor.find.addExtraSpaceOnTop": false
}

You might also like