114 lines
3.8 KiB
JSON
114 lines
3.8 KiB
JSON
{
|
|
"editor.tokenColorCustomizations": {
|
|
"textMateRules": [
|
|
{
|
|
"scope": [
|
|
"comment",
|
|
"comment.line",
|
|
"comment.block",
|
|
"punctuation.definition.comment"
|
|
],
|
|
"settings": {
|
|
"foreground": "#5fca5f" // světlá zelená
|
|
}
|
|
}
|
|
]
|
|
},
|
|
|
|
"files.autoSave": "afterDelay",
|
|
"vscode-edge-devtools.webhintInstallNotification": true,
|
|
"explorer.confirmDelete": false,
|
|
"git.suggestSmartCommit": false,
|
|
"git.confirmSync": false,
|
|
"git.autofetch": true,
|
|
"editor.minimap.enabled": false,
|
|
"explorer.confirmPasteNative": false,
|
|
"explorer.confirmDragAndDrop": false,
|
|
"[php]": {
|
|
"editor.defaultFormatter": "bmewburn.vscode-intelephense-client"
|
|
},
|
|
"redhat.telemetry.enabled": false,
|
|
"files.exclude": {
|
|
"**/.git": false
|
|
},
|
|
|
|
/*CUSTOM django-html SETTINGS*/
|
|
"emmet.includeLanguages": {
|
|
"django-html": "html"
|
|
},
|
|
"files.associations": {
|
|
"**/*.html": "html",
|
|
"**/templates/**/*.html": "django-html",
|
|
"**/templates/**/*": "django-txt"
|
|
},
|
|
"[django-html]": {
|
|
"editor.defaultFormatter": "batisteo.vscode-django",
|
|
"editor.insertSpaces": false,
|
|
"editor.tabSize": 2
|
|
},
|
|
"terminal.integrated.enableMultiLinePasteWarning": false,
|
|
"workbench.colorCustomizations": {},
|
|
"html.format.contentUnformatted": "",
|
|
"python.createEnvironment.trigger": "off",
|
|
"phpserver.phpConfigPath": "C:\\xampp\\php\\php.ini",
|
|
"phpserver.phpPath": "C:\\xampp\\php\\php.exe",
|
|
"explorer.fileNesting.patterns": {
|
|
"*.ts": "${capture}.js",
|
|
"*.js": "${capture}.js.map, ${capture}.min.js, ${capture}.d.ts",
|
|
"*.jsx": "${capture}.js",
|
|
"*.tsx": "${capture}.ts",
|
|
"tsconfig.json": "tsconfig.*.json",
|
|
"package.json": "package-lock.json, yarn.lock, pnpm-lock.yaml, bun.lockb, bun.lock",
|
|
"*.sqlite": "${capture}.${extname}-*",
|
|
"*.db": "${capture}.${extname}-*",
|
|
"*.sqlite3": "${capture}.${extname}-*",
|
|
"*.db3": "${capture}.${extname}-*",
|
|
"*.sdb": "${capture}.${extname}-*",
|
|
"*.s3db": "${capture}.${extname}-*"
|
|
},
|
|
"workbench.colorTheme": "Atom One Dark",
|
|
"workbench.iconTheme": "vscode-icons",
|
|
"github.copilot.nextEditSuggestions.enabled": true,
|
|
|
|
"workbench.tree.enableStickyScroll": false,
|
|
"workbench.tree.indent": 15,
|
|
"workbench.tree.renderIndentGuides": "none",
|
|
"explorer.compactFolders": false,
|
|
"material-icon-theme.hidesExplorerArrows": true,
|
|
"material-icon-theme.folders.customClones": [
|
|
{
|
|
"name": "features-folder",
|
|
"base": "connection",
|
|
"folderNames": ["features"],
|
|
"color": "blue-400",
|
|
"lightColor": "blue-600"
|
|
},
|
|
{
|
|
"name": "api-folder",
|
|
"base": "api",
|
|
"color": "red-400", // new color for Dark theme
|
|
"lightColor": "red-600", // optional: color for Light theme
|
|
"folderNames": ["api"],
|
|
},
|
|
{
|
|
"name": "forms-folder",
|
|
"base": "content",
|
|
"color": "red-800", // new color for Dark theme
|
|
"lightColor": "yellow-600", // optional: color for Light theme
|
|
"folderNames": ["forms", "form", "forms-templates"],
|
|
}
|
|
],
|
|
|
|
|
|
"draw.folder.structure.exclude": ["**/node_modules", "**/dist", "**/.git", "**/.vscode"],
|
|
"draw.folder.structure.style": "EmojiDashes",
|
|
"draw.folder.structure.allowRecursion": true,
|
|
"draw.folder.structure.respectGitignore": false,
|
|
"github.copilot.enable": {
|
|
"*": true,
|
|
"plaintext": false,
|
|
"markdown": true,
|
|
"scminput": false
|
|
},
|
|
"terminal.integrated.stickyScroll.enabled": false
|
|
} |