Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- {
- // FORMATTER ASSOCIATION
- "[html]": {
- "editor.defaultFormatter": "esbenp.prettier-vscode"
- },
- "[css]": {
- "editor.defaultFormatter": "esbenp.prettier-vscode"
- },
- "[javascript]": {
- "editor.defaultFormatter": "esbenp.prettier-vscode"
- },
- "[json]": {
- "editor.defaultFormatter": "vscode.json-language-features"
- },
- "[twig]": {
- "editor.defaultFormatter": "mblode.twig-language-2"
- },
- "[blade]": {
- "editor.defaultFormatter": "shufo.vscode-blade-formatter"
- },
- "[dart]": {
- "editor.formatOnSave": true,
- "editor.formatOnType": true,
- "editor.rulers": [80],
- "editor.selectionHighlight": false,
- "editor.tabCompletion": "onlySnippets",
- "editor.wordBasedSuggestions": "off"
- },
- "emmet.includeLanguages": {
- "latte": "html"
- },
- // FILE ASSOCIATION
- "files.associations": {
- "*.neon": "neon",
- "*.latte": "latte"
- },
- // ICONS ASSOCIATION
- "material-icon-theme.activeIconPack": "angular_ngrx",
- "material-icon-theme.files.associations": {
- "*.latte": "mocha",
- "*.neon": "yaml"
- },
- "material-icon-theme.folders.associations": {
- "attribute": "decorators",
- "attributes": "decorators",
- "presenter": "controller",
- "presenters": "controller",
- "repository": "context",
- "repositories": "context",
- "entity": "container",
- "entities": "container",
- "trait": "include",
- "traits": "include"
- },
- // EXPLORER
- "explorer.confirmDragAndDrop": false,
- // SECURITY
- "security.workspace.trust.untrustedFiles": "newWindow",
- "security.workspace.trust.banner": "never",
- "security.workspace.trust.enabled": false,
- // TYPESCRIPT
- "typescript.updateImportsOnFileMove.enabled": "always",
- "typescript.preferences.quoteStyle": "single",
- // TERMINAL
- "terminal.integrated.fontFamily": "monospace",
- "terminal.integrated.defaultProfile.windows": "PowerShell",
- "terminal.integrated.defaultProfile.osx": "zsh",
- "terminal.integrated.defaultProfile.linux": "zsh",
- "terminal.integrated.enablePersistentSessions": false,
- // EDITOR
- "editor.fontFamily": "Dank Mono",
- "editor.fontVariations": true,
- "editor.tabSize": 2,
- "editor.suggestSelection": "first",
- "editor.fontLigatures": false,
- "editor.minimap.enabled": false,
- "editor.formatOnSave": true,
- // WORKBENCH
- "workbench.editor.empty.hint": "hidden",
- "workbench.iconTheme": "material-icon-theme",
- "workbench.colorTheme": "Panda Syntax",
- "workbench.preferredDarkColorTheme": "Default Dark Modern",
- "workbench.preferredLightColorTheme": "Default Light Modern",
- "workbench.tips.enabled": false,
- "workbench.startupEditor": "none",
- "window.titleBarStyle": "custom",
- "workbench.statusBar.visible": false,
- "workbench.editor.editorActionsLocation": "hidden",
- "workbench.activityBar.location": "bottom",
- "workbench.sideBar.location": "right",
- "workbench.editor.showTabs": "multiple",
- "window.commandCenter": false,
- "workbench.layoutControl.enabled": false,
- "settingsSync.ignoredSettings": [],
- // CUSTOM CSS - JS TWEAKS
- "vscode_custom_css.imports": [
- "file://C:/Users/filip/AppData/Roaming/Code/User/custom.css"
- ],
- // GIT
- "git.autofetch": true,
- "git.enableSmartCommit": true,
- "git.confirmSync": false,
- // EXTENSIONS - DEBUG
- "thunder-client.httpLibrary": "axios",
- // EXTENSIONS - CSS
- "tailwindCSS.emmetCompletions": true,
- // EXTENSIONS - JS
- "eslint.format.enable": true,
- "npm-intellisense.showBuildInLibs": true,
- // EXTENSIONS - SQL
- "sqltools.useNodeRuntime": true,
- "sqltools.disableNodeDetectNotifications": true,
- // EXTENSIONS - PHP
- "php.highlight-todo.enable": false,
- "phpunit.phpunit": "./vendor/bin/phpunit",
- "php.format.rules.openBraceOnNewLineForFunctions": true,
- "phpTools.suppressPremiumFeatures": true,
- "php.inlayHints.types.return": true,
- "bladeFormatter.format.sortTailwindcssClasses": true,
- // EXTENSIONS - OTHER
- "path-intellisense.autoSlashAfterDirectory": true,
- "mdb.sendTelemetry": false,
- "liveshare.allowGuestTaskControl": true,
- "redhat.telemetry.enabled": true,
- // EXTENSIONS - PRETTIER
- "prettier.bracketSameLine": true,
- "prettier.jsxSingleQuote": true,
- "prettier.singleQuote": true,
- // EXTENSIONS - LATTE
- "latte-lsp.trace.server": {
- "format": "json",
- "verbosity": "verbose"
- },
- // EXTENSIONS - VUE
- "vue.updateImportsOnFileMove.enabled": true,
- }
Add Comment
Please, Sign In to add comment