init commit

This commit is contained in:
2024-05-22 13:16:21 -05:00
commit dd52c42729
10 changed files with 1213 additions and 0 deletions
+40
View File
@@ -0,0 +1,40 @@
{
// List of extensions which should be recommended for users of this workspace.
"recommendations": [
"dsznajder.es7-react-js-snippets",
"xabikos.JavaScriptSnippets",
"arcticicestudio.nord-visual-studio-code",
"wangweixuan.yithemes",
"esbenp.prettier-vscode", // Prettier
"formulahendry.auto-rename-tag", // Auto Rename Tag
"vincaslt.highlight-matching-tag",
"wix.vscode-import-cost", // Import Cost
"thekalinga.bootstrap4-vscode", // bootstrap fontawesome
"PKief.material-icon-theme", // material icon theme
"naumovs.color-highlight",
"anseki.vscode-color", // ColorPicker
"wayou.vscode-todo-highlight",
"usernamehw.todo-md",
"Gruntfuggly.todo-tree",
// Can't find Beautify on the visual studio marketplace what I find is [this](https://marketplace.visualstudio.com/items?itemName=HookyQR.beautify) but it's deprecated
"adpyke.codesnap", // CodeSnap
// "usernamehw.errorlens", // Error Lens
// "solnurkarim.html-to-css-autocompletion", // HTML-to-CSS-autocompletion
// "VisualStudioExptTeam.vscodeintellicode", // Intellicode
// "vscode-icons-team.vscode-icons", // VSCode Icons
"ritwickdey.LiveServer", // Live Server
"ms-vscode.live-server", // Live Preview
"s-nlf-fh.glassit" // Glassit-VSC
// "teabyii.ayu", // Ayu Theme
// "ankitcode.firefly", // Firefly Theme
// "guilhermerodz.omni-owl", // Omini Owl Theme
// "barrsan.reui", // Reui Theme
// "ahmadawais.shades-of-purple", // Shade of Purple Theme
],
// List of extensions recommended by VS Code that should not be recommended for users of this workspace.
"unwantedRecommendations": [
"GitHub.copilot",
"firefox-devtools.vscode-firefox-debug",
"ms-vscode.PowerShell"
]
}
+14
View File
@@ -0,0 +1,14 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "bashdb",
"request": "launch",
"name": "Bash-Debug (simplest configuration)",
"program": "${file}"
}
]
}
+139
View File
@@ -0,0 +1,139 @@
{
"window.commandCenter": false,
"editor.bracketPairColorization.enabled": true,
"editor.formatOnType": true,
"editor.formatOnSave": true,
"editor.renderControlCharacters": true,
"editor.renderWhitespace": "boundary",
"editor.guides.bracketPairs": true,
"workbench.colorTheme": "Nord",
"workbench.colorCustomizations": {
"[Nord]": {}
},
"editor.cursorBlinking": "expand",
"editor.cursorStyle": "line",
"editor.cursorWidth": 3,
"editor.find.cursorMoveOnType": true,
"editor.fontFamily": "Victor Mono Italic",
"editor.fontLigatures": "'ss01'",
"editor.fontSize": 14,
"editor.fontWeight": "700",
"editor.detectIndentation": false,
"editor.autoIndent": "keep",
"editor.tabCompletion": "on",
"editor.tabSize": 4,
"editor.indentSize": "tabSize",
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": [
"keyword.other.unit",
"support.type.property-name.css",
"support.type.vendored.property-name.css",
"support.constant.vendored.property-value.css",
"meta.import.ts meta.block.ts variable.other.readwrite.alias.ts",
"meta.import.tsx meta.block.tsx variable.other.readwrite.alias.tsx",
"meta.import.js variable.other",
"meta.export.ts meta.block.ts variable.other.readwrite.alias.ts",
"meta.export.tsx meta.block.tsx variable.other.readwrite.alias.tsx",
"meta.export.js variable.other",
"entity.name.function.ts",
"entity.name.function.tsx",
"support.type.primitive",
"entity.name.tag.yaml",
"entity.other.attribute-name",
"meta.tag.sgml.doctype.html",
"entity.name.tag.doctype",
"meta.tag.sgml.doctype",
"entity.name.tag.custom",
"source.js.jsx keyword.control.flow.js",
"support.type.property.css",
"support.function.basic_functions",
"constant.other.color.rgb-value.hex.css",
"constant.other.rgb-value.css",
"variable.assignment.coffee",
"support.function.basic_functions",
"keyword.operator.expression.typeof",
"keyword.operator.type.annotation",
"variable.object.property.ts",
"variable.object.property.js",
"variable.object.property.jsx",
"variable.object.property.tsx",
"assignment.coffee",
"entity.name.type.ts",
"support.constant.math",
"meta.object-literal.key",
"meta.var.expr storage.type",
"variable.scss",
"variable.sass",
"variable.other.less",
"variable.parameter.url.scss",
"variable.parameter.url.sass",
"parameter",
"string",
"italic",
"quote",
"keyword",
"storage",
"language",
"constant.language",
"variable.language",
"type .function",
"type.function",
"storage.type.class",
"type.var",
"meta.parameter",
"variable.parameter",
"meta.parameters",
"keyword.control",
"modifier",
"this",
"comment"
// Functions:
// "entity.name.section",
// "entity.name.function",
// "meta.require",
// "support.function.any-method",
// "variable.function",
],
"settings": {
"fontStyle": "italic"
}
},
{
"name": "Italics",
"scope": [
"comment",
"constant",
"entity",
"function",
"invalid",
"keyword",
"markup",
"meta",
"punctuation",
"source",
"storage",
"string",
"support",
"text",
"variable"
],
"settings": {
"fontStyle": "italic"
}
}
]
},
"terminal.integrated.fontFamily": "'Terminess (TTF) Nerd Font Complete', consolas",
"terminal.integrated.fontWeight": "bold",
"workbench.iconTheme": "material-icon-theme",
"codesnap.shutterAction": "copy",
"glassit.alpha": 230, // glassit.alpha (integer): Transparency level [1-255].
"glassit.step": 3,
"javascript.format.semicolons": "remove",
"prettier.singleQuote": true // glassit.step (integer): Increment of alpha.
}