Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- {
- "editor.tokenColorCustomizations": {
- "semanticHighlighting": true
- },
- "beautify.language": {
- "js": {
- "type": [
- "javascript",
- "json"
- ],
- "filename": [
- ".jshintrc",
- ".jsbeautifyrc"
- ]
- // "ext": ["js", "json"]
- // ^^ to set extensions to be beautified using the javascript beautifier
- },
- "css": [
- "css",
- "scss"
- ],
- "html": [
- "htm",
- "html"
- ],
- // ^^ providing just an array sets the VS Code file type
- "editor.formatOnSave": true,
- "key": "cmd+b",
- "command": "HookyQR.beautify",
- "when": "editorFocus"
- },
- "breadcrumbs.enabled": true,
- "liveServer.settings.donotShowInfoMsg": true,
- "liveServer.settings.donotVerifyTags": true,
- "editor.fontSize": 15,
- "phpfmt.detect_indent": false,
- "phpfmt.indent_with_space":4,
- "phpfmt.enable_auto_align": true,
- "[php]": {
- "editor.defaultFormatter": "kokororin.vscode-phpfmt",
- "editor.formatOnSave": false
- },
- "phpfmt.psr2": false,
- "phpfmt.exclude": [
- "AllmanStyleBraces",
- "ReindentComments",
- "StripNewlineWithinClassBody"
- ],
- "phpfmt.passes": [
- "AlignDoubleArrow",
- "AlignConstVisibilityEquals",
- "AlignGroupDoubleArrow",
- "AlignEquals",
- // "GeneratePHPDoc",
- "SpaceAroundParentheses",
- "PrettyPrintDocBlocks",
- "AlignTypehint",
- "DocBlockToComment",
- "AlignPHPCode",
- "AutoSemicolon",
- "ConvertOpenTagWithEcho",
- "IndentTernaryConditions",
- "NewLineBeforeReturn",
- "PHPDocTypesToFunctionTypehint",
- "PrettyPrintDocBlocks",
- "StripNewlineAfterCurlyOpen",
- ],
- "editor.suggestSelection": "first",
- "vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
- "code-runner.executorMapByFileExtension": {
- "javascript": "node",
- "php": "php",
- "python": "python",
- "perl": "perl",
- "ruby": "ruby",
- "go": "go run",
- "html": "chrome"
- },
- "[javascript]": {
- "editor.defaultFormatter": "esbenp.prettier-vscode"
- },
- "php-docblocker.functionTemplate": {
- },
- "php-docblocker.returnGap": true,
- "php-docblocker.qualifyClassNames": true,
- "php-docblocker.useShortNames": true,
- "php-docblocker.author": {
- "name": "Kamal",
- "email": "hello@kamal.pw"
- },
- "php-docblocker.extra": [
- ],
- "auto-close-tag.activationOnLanguage": [
- "xml",
- "php",
- "blade",
- "ejs",
- "jinja",
- "javascript",
- "javascriptreact",
- "typescript",
- "typescriptreact",
- "plaintext",
- "markdown",
- "vue",
- "liquid",
- "erb",
- "lang-cfml",
- "cfml",
- "HTML (EEx)",
- "HTML (Eex)",
- "plist"
- ],
- "auto-close-tag.excludedTags": [
- "area",
- "base",
- "br",
- "col",
- "command",
- "embed",
- "hr",
- "img",
- "input",
- "keygen",
- "link",
- "meta",
- "param",
- "source",
- "track",
- "wbr"
- ],
- "git.autofetch": true,
- "editor.minimap.enabled": true,
- "files.associations": {
- },
- "launch": {
- },
- "update.mode": "start",
- "editor.fontFamily": "Fira Code",
- "editor.fontLigatures": true,
- "editor.fontWeight": "400",
- "editor.formatOnPaste": false,
- "editor.formatOnType": true,
- "workbench.iconTheme": "material-icon-theme",
- "workbench.preferredDarkColorTheme": "Monokai",
- "workbench.preferredHighContrastColorTheme": "Monokai",
- "workbench.preferredLightColorTheme": "Monokai",
- "window.autoDetectColorScheme": true,
- "html.format.contentUnformatted": "",
- "editor.codeActionsOnSave": null,
- "workbench.colorTheme": "Cobalt2",
- "terminal.integrated.shell.osx": "/bin/zsh",
- "editor.largeFileOptimizations": false,
- "editor.renameOnType": true,
- "files.autoSave": "afterDelay",
- "files.autoSaveDelay": 5000,
- "terminal.integrated.fontFamily": "Source Code Pro for Powerline",
- "editor.hover.enabled": false,
- "editor.wordBasedSuggestions": false,
- "javascript.suggest.names": false,
- "stories.username": "insane_coder",
- "stories.flair": "vue",
- "[dart]": {
- "editor.formatOnSave": true,
- "editor.formatOnType": true,
- "editor.rulers": [
- 80
- ],
- "editor.selectionHighlight": false,
- "editor.suggest.snippetsPreventQuickSuggestions": false,
- "editor.suggestSelection": "first",
- "editor.tabCompletion": "onlySnippets",
- "editor.wordBasedSuggestions": false
- },
- "tabnine.experimentalAutoImports": true,
- "editor.renderControlCharacters": true,
- "diffEditor.ignoreTrimWhitespace": false,
- "emmet.includeLanguages": {
- "liquid": "html"
- },
- "emmet.excludeLanguages": [
- "markdown"
- ],
- "window.zoomLevel": 1,
- "git.enableSmartCommit": true,
- "dart.checkForSdkUpdates": false,
- "security.workspace.trust.untrustedFiles": "open",
- "[css]": {
- "editor.defaultFormatter": "esbenp.prettier-vscode"
- },
- "php.executablePath": "/usr/local/bin/php",
- "phpcs.enable": false,
- "phpcs.standard": "WordPress",
- "editor.accessibilitySupport": "on",
- "emmet.triggerExpansionOnTab": true,
- "php.validate.executablePath": ""
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement