settings.json 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  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. "git.autofetch": true,
  23. "git.autofetchPeriod": 60,
  24. "git.autoStash": true,
  25. "git.pullBeforeCheckout": true,
  26. "git.showPushSuccessNotification": true,
  27. "git.enableStatusBarSync": true,
  28. "window.zoomLevel": 1,
  29. "workbench.colorTheme": "Default Light Modern",
  30. "windsurf.autocompleteSpeed": "fast",
  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. "git.enableSmartCommit": true,
  63. "i18n-ally.displayLanguage": "zh-CN",
  64. "workbench.iconTheme": "vscode-icons",
  65. "database-client.autoSync": true,
  66. "files.eol": "\n",
  67. "notebook.lineNumbers": "on",
  68. "terminal.integrated.cwd": "${workspaceFolder}",
  69. "terminal.integrated.defaultProfile.linux": "zsh",
  70. "terminal.integrated.profiles.linux": {
  71. "zsh": {
  72. "path": "zsh",
  73. "icon": "terminal",
  74. "args": ["-l"]
  75. }
  76. },
  77. "terminal.integrated.env.linux": {
  78. "PATH": "${env:PATH}:${workspaceFolder}/vendor/bin:${workspaceFolder}/script/ansible/bin:${workspaceFolder}/script/bin"
  79. },
  80. "git.confirmSync": false,
  81. "git.fetchOnPull": true,
  82. "git.showUnpublishedCommitsButton": "always",
  83. "aws.telemetry": false,
  84. "editor.formatOnPaste": true,
  85. "editor.formatOnType": true,
  86. "evenBetterToml.formatter.arrayAutoExpand": true,
  87. "evenBetterToml.formatter.arrayAutoCollapse": true,
  88. "cSpell.autoFormatConfigFile": true,
  89. "files.autoSaveWhenNoErrors": true,
  90. "files.autoSaveWorkspaceFilesOnly": true,
  91. "editor.formatOnSave": true
  92. }