settings.json 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. {
  2. "i18n-ally.localesPaths": [
  3. "lang"
  4. ],
  5. "rest-client.environmentVariables": {
  6. "$shared": {
  7. "version": "v1"
  8. },
  9. "development": {
  10. "host": "http://127.0.0.1",
  11. "token": "Bearer 4|61U2jey1KvR4Z1pE7Qr8Sh9ri2G3jn1ClnonXA2J86f61575"
  12. },
  13. "testing": {
  14. "host": "http://test-api.example.com",
  15. "token": "test-token"
  16. },
  17. "production": {
  18. "host": "http://api.example.com",
  19. "token": "prod-token"
  20. }
  21. },
  22. "window.zoomLevel": 0.2,
  23. "git.autofetch": true,
  24. "git.autofetchPeriod": 60,
  25. "git.autoStash": true,
  26. "git.pullBeforeCheckout": true,
  27. "git.showPushSuccessNotification": true,
  28. "git.enableStatusBarSync": true,
  29. "workbench.colorTheme": "Default Light Modern",
  30. "windsurf.autocompleteSpeed": "default",
  31. "redhat.telemetry.enabled": true,
  32. "ansible.validation.lint.arguments": "--skip-list=fqcn[action-core,action]",
  33. "vim.useCtrlKeys": true,
  34. "vim.handleKeys": {
  35. "<C-a>": false,
  36. "<C-b>": false,
  37. "<C-c>": false,
  38. "<C-d>": false,
  39. "<C-e>": false,
  40. "<C-f>": false,
  41. "<C-g>": false,
  42. "<C-h>": false,
  43. "<C-i>": false,
  44. "<C-j>": false,
  45. "<C-k>": false,
  46. "<C-l>": false,
  47. "<C-m>": false,
  48. "<C-n>": false,
  49. "<C-o>": false,
  50. "<C-p>": false,
  51. "<C-q>": false,
  52. "<C-r>": false,
  53. "<C-s>": false,
  54. "<C-t>": false,
  55. "<C-u>": false,
  56. "<C-v>": false,
  57. "<C-w>": false,
  58. "<C-x>": false,
  59. "<C-y>": false,
  60. "<C-z>": false
  61. },
  62. "vim.showmodename": true,
  63. "vim.statusBarColorControl": true,
  64. "vim.easymotion": true,
  65. "vim.incsearch": true,
  66. "vim.useSystemClipboard": true,
  67. "vim.hlsearch": true,
  68. "git.enableSmartCommit": true,
  69. "i18n-ally.displayLanguage": "zh-CN",
  70. "workbench.iconTheme": "vscode-icons",
  71. "database-client.autoSync": true,
  72. "files.eol": "\n",
  73. "files.insertFinalNewline": true,
  74. "files.trimTrailingWhitespace": true,
  75. "notebook.lineNumbers": "on",
  76. "terminal.integrated.cwd": "${workspaceFolder}",
  77. "terminal.integrated.defaultProfile.linux": "zsh",
  78. "terminal.integrated.profiles.linux": {
  79. "zsh": {
  80. "path": "/usr/bin/zsh",
  81. "icon": "terminal",
  82. "args": ["-l", "-c", "cd ${workspaceFolder} && source .zshrc && exec zsh"],
  83. }
  84. },
  85. "terminal.integrated.inheritEnv": true,
  86. "terminal.integrated.defaultProfile.osx": "zsh",
  87. "terminal.integrated.profiles.osx": {
  88. "zsh": {
  89. "path": "zsh",
  90. "icon": "terminal",
  91. "args": ["-l"]
  92. }
  93. },
  94. "terminal.integrated.env.osx": {
  95. "PATH": "${env:PATH}:${workspaceFolder}/vendor/bin:${workspaceFolder}/script/ansible/bin:${workspaceFolder}/script/bin"
  96. },
  97. "git.confirmSync": false,
  98. "git.fetchOnPull": true,
  99. "git.showUnpublishedCommitsButton": "always",
  100. "aws.telemetry": false,
  101. "editor.formatOnPaste": true,
  102. "editor.formatOnType": true,
  103. "evenBetterToml.formatter.arrayAutoExpand": true,
  104. "evenBetterToml.formatter.arrayAutoCollapse": true,
  105. "cSpell.autoFormatConfigFile": true,
  106. "files.autoSaveWhenNoErrors": true,
  107. "files.autoSaveWorkspaceFilesOnly": true,
  108. "editor.formatOnSave": true,
  109. "extensions.experimental.useUtilityProcess": true,
  110. "i18n-ally.sourceLanguage": "zh",
  111. "cSpell.words": [
  112. "Arrayable",
  113. "bootable",
  114. "Deviable",
  115. "initializable",
  116. "Jsonable",
  117. "Queueable",
  118. "setex",
  119. "unserialized"
  120. ],
  121. "php.problems.exclude": {
  122. "/": [406],
  123. "vendor/": true,
  124. "_ide_helper.php": true,
  125. "_ide_helper_models.php": true,
  126. ".phpstorm.meta.php": true,
  127. "storage/": true
  128. },
  129. "vite.autoStart": false,
  130. "codetogether.virtualCursorJoin": "sharedVirtualCursor",
  131. "codetogether.virtualCursorRemember": true,
  132. "ansible.python.interpreterPath": "/bin/python3",
  133. "terminal.integrated.copyOnSelection": true,
  134. }