Advertisement
ikamal7

vscode settings

Sep 22nd, 2021
2,238
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 5.09 KB | None | 0 0
  1. {
  2.   "editor.tokenColorCustomizations": {
  3.     "semanticHighlighting": true
  4.   },
  5.   "beautify.language": {
  6.     "js": {
  7.       "type": [
  8.         "javascript",
  9.         "json"
  10.       ],
  11.       "filename": [
  12.         ".jshintrc",
  13.         ".jsbeautifyrc"
  14.       ]
  15.       // "ext": ["js", "json"]
  16.       // ^^ to set extensions to be beautified using the javascript beautifier
  17.     },
  18.     "css": [
  19.       "css",
  20.       "scss"
  21.     ],
  22.     "html": [
  23.       "htm",
  24.       "html"
  25.     ],
  26.     // ^^ providing just an array sets the VS Code file type
  27.     "editor.formatOnSave": true,
  28.     "key": "cmd+b",
  29.     "command": "HookyQR.beautify",
  30.     "when": "editorFocus"
  31.   },
  32.   "breadcrumbs.enabled": true,
  33.   "liveServer.settings.donotShowInfoMsg": true,
  34.   "liveServer.settings.donotVerifyTags": true,
  35.   "editor.fontSize": 15,
  36.   "phpfmt.detect_indent": false,
  37.   "phpfmt.indent_with_space":4,
  38.   "phpfmt.enable_auto_align": true,
  39.   "[php]": {
  40.     "editor.defaultFormatter": "kokororin.vscode-phpfmt",
  41.     "editor.formatOnSave": false
  42.   },
  43.   "phpfmt.psr2": false,
  44.   "phpfmt.exclude": [
  45.     "AllmanStyleBraces",
  46.     "ReindentComments",
  47.     "StripNewlineWithinClassBody"
  48.   ],
  49.   "phpfmt.passes": [
  50.     "AlignDoubleArrow",
  51.     "AlignConstVisibilityEquals",
  52.     "AlignGroupDoubleArrow",
  53.     "AlignEquals",
  54.     // "GeneratePHPDoc",
  55.     "SpaceAroundParentheses",
  56.     "PrettyPrintDocBlocks",
  57.     "AlignTypehint",
  58.     "DocBlockToComment",
  59.     "AlignPHPCode",
  60.     "AutoSemicolon",
  61.     "ConvertOpenTagWithEcho",
  62.     "IndentTernaryConditions",
  63.     "NewLineBeforeReturn",
  64.     "PHPDocTypesToFunctionTypehint",
  65.     "PrettyPrintDocBlocks",
  66.     "StripNewlineAfterCurlyOpen",
  67.   ],
  68.  
  69.   "editor.suggestSelection": "first",
  70.   "vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
  71.   "code-runner.executorMapByFileExtension": {
  72.     "javascript": "node",
  73.     "php": "php",
  74.     "python": "python",
  75.     "perl": "perl",
  76.     "ruby": "ruby",
  77.     "go": "go run",
  78.     "html": "chrome"
  79.   },
  80.   "[javascript]": {
  81.     "editor.defaultFormatter": "esbenp.prettier-vscode"
  82.   },
  83.   "php-docblocker.functionTemplate": {
  84.   },
  85.   "php-docblocker.returnGap": true,
  86.   "php-docblocker.qualifyClassNames": true,
  87.   "php-docblocker.useShortNames": true,
  88.   "php-docblocker.author": {
  89.     "name": "Kamal",
  90.     "email": "hello@kamal.pw"
  91.   },
  92.   "php-docblocker.extra": [
  93.  
  94.   ],
  95.   "auto-close-tag.activationOnLanguage": [
  96.  
  97.     "xml",
  98.     "php",
  99.     "blade",
  100.     "ejs",
  101.     "jinja",
  102.     "javascript",
  103.     "javascriptreact",
  104.     "typescript",
  105.     "typescriptreact",
  106.     "plaintext",
  107.     "markdown",
  108.     "vue",
  109.     "liquid",
  110.     "erb",
  111.     "lang-cfml",
  112.     "cfml",
  113.     "HTML (EEx)",
  114.     "HTML (Eex)",
  115.     "plist"
  116.   ],
  117.   "auto-close-tag.excludedTags": [
  118.  
  119.     "area",
  120.     "base",
  121.     "br",
  122.     "col",
  123.     "command",
  124.     "embed",
  125.     "hr",
  126.     "img",
  127.     "input",
  128.     "keygen",
  129.     "link",
  130.     "meta",
  131.     "param",
  132.     "source",
  133.     "track",
  134.     "wbr"
  135.   ],
  136.   "git.autofetch": true,
  137.   "editor.minimap.enabled": true,
  138.   "files.associations": {
  139.  
  140.   },
  141.   "launch": {
  142.  
  143.   },
  144.   "update.mode": "start",
  145.   "editor.fontFamily": "Fira Code",
  146.   "editor.fontLigatures": true,
  147.   "editor.fontWeight": "400",
  148.   "editor.formatOnPaste": false,
  149.   "editor.formatOnType": true,
  150.   "workbench.iconTheme": "material-icon-theme",
  151.   "workbench.preferredDarkColorTheme": "Monokai",
  152.   "workbench.preferredHighContrastColorTheme": "Monokai",
  153.   "workbench.preferredLightColorTheme": "Monokai",
  154.   "window.autoDetectColorScheme": true,
  155.   "html.format.contentUnformatted": "",
  156.   "editor.codeActionsOnSave": null,
  157.   "workbench.colorTheme": "Cobalt2",
  158.   "terminal.integrated.shell.osx": "/bin/zsh",
  159.   "editor.largeFileOptimizations": false,
  160.   "editor.renameOnType": true,
  161.   "files.autoSave": "afterDelay",
  162.   "files.autoSaveDelay": 5000,
  163.   "terminal.integrated.fontFamily": "Source Code Pro for Powerline",
  164.   "editor.hover.enabled": false,
  165.   "editor.wordBasedSuggestions": false,
  166.   "javascript.suggest.names": false,
  167.   "stories.username": "insane_coder",
  168.   "stories.flair": "vue",
  169.   "[dart]": {
  170.     "editor.formatOnSave": true,
  171.     "editor.formatOnType": true,
  172.     "editor.rulers": [
  173.       80
  174.     ],
  175.     "editor.selectionHighlight": false,
  176.     "editor.suggest.snippetsPreventQuickSuggestions": false,
  177.     "editor.suggestSelection": "first",
  178.     "editor.tabCompletion": "onlySnippets",
  179.     "editor.wordBasedSuggestions": false
  180.   },
  181.   "tabnine.experimentalAutoImports": true,
  182.   "editor.renderControlCharacters": true,
  183.   "diffEditor.ignoreTrimWhitespace": false,
  184.   "emmet.includeLanguages": {
  185.     "liquid": "html"
  186.   },
  187.   "emmet.excludeLanguages": [
  188.     "markdown"
  189.   ],
  190.   "window.zoomLevel": 1,
  191.   "git.enableSmartCommit": true,
  192.   "dart.checkForSdkUpdates": false,
  193.   "security.workspace.trust.untrustedFiles": "open",
  194.   "[css]": {
  195.     "editor.defaultFormatter": "esbenp.prettier-vscode"
  196.   },
  197.   "php.executablePath": "/usr/local/bin/php",
  198.   "phpcs.enable": false,
  199.   "phpcs.standard": "WordPress",
  200.   "editor.accessibilitySupport": "on",
  201.   "emmet.triggerExpansionOnTab": true,
  202.   "php.validate.executablePath": ""
  203. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement