Vscode 自定义配置操作

hybpjx Lv4

vscode 自定义配置

必装插件与配置

  1. Go,python——跟着你要运行代码来

  2. Code Runner ——代码运行工具

  3. IntelliJ IDEA Keybindings——使用IDEA快捷键

  4. Pylance——修正python语法与感知

  5. Black Formatter——代码格式化工具

  6. Better Comments ——美化注释的插件

  7. Bracket Pair Colorizer 2——找大括号 逆向者

  8. Material Theme Icons——文件图标

  9. Error Gutters——错误提示

  10. Code Spell Checker ——代码单词检查

  11. open in browser——可以打开HTML

  12. Postcode ——集成的Postman

  13. Project Manager——项目管理工具

  14. koroFileHeader——自动生成头部注释

    1. "fileheader.customMade": {
          "Author": "一尾流莺",
          "Description": "",
          "Date": "Do not edit",
          "LastEditTime": "Do not edit",
          "FilePath": ""
        },
        
        "fileheader.cursorMode": {
          "description": "",
          "param": "",
          "return": ""
        }
      
      1
      2
      3
      4
      5
      6
      7
      8
      9
      10

      15.

      # 保存即格式化

      ```json
      {
      "editor.formatOnSave": true,
      "editor.defaultFormatter": "esbenp.prettier-vscode" // 指定默认格式化工具(如Prettier)
      }

也可以根据语言

1
2
3
4
5
{
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
}

Mac中自动选择Python环境

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"python.condaPath": "/Users/hybpjx/miniconda3/bin/conda",
"terminal.integrated.profiles.osx": {
"bash": {
"path": "bash",
"args": ["-l"] // 加载登录 shell 的环境变量
},
"zsh": {
"path": "zsh",
"args": ["-l"]
}
},
"terminal.integrated.defaultProfile.osx": "zsh",
"code-runner.executorMap": {
"javascript": "source ~/.nvm/nvm.sh && node",
"java": "cd $dir && javac $fileName && java $fileNameWithoutExt",
"c": "cd $dir && gcc $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt",
"zig": "zig run",
"cpp": "cd $dir && g++ $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt",
"objective-c": "cd $dir && gcc -framework Cocoa $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt",
"php": "php",
"python.pythonPath": "${env:CONDA_PREFIX}/bin/python",
"perl": "perl",
"perl6": "perl6",
"ruby": "ruby",
"go": "go run",
"lua": "lua",
"groovy": "groovy",
"powershell": "powershell -ExecutionPolicy ByPass -File",
"bat": "cmd /c",
"shellscript": "bash",
"fsharp": "fsi",
"csharp": "scriptcs",
"vbscript": "cscript //Nologo",
"typescript": "ts-node",
"coffeescript": "coffee",
"scala": "scala",
"swift": "swift",
"julia": "julia",
"crystal": "crystal",
"ocaml": "ocaml",
"r": "Rscript",
"applescript": "osascript",
"clojure": "lein exec",
"haxe": "haxe --cwd $dirWithoutTrailingSlash --run $fileNameWithoutExt",
"rust": "cd $dir && rustc $fileName && $dir$fileNameWithoutExt",
"racket": "racket",
"scheme": "csi -script",
"ahk": "autohotkey",
"autoit": "autoit3",
"dart": "dart",
"pascal": "cd $dir && fpc $fileName && $dir$fileNameWithoutExt",
"d": "cd $dir && dmd $fileName && $dir$fileNameWithoutExt",
"haskell": "runghc",
"nim": "nim compile --verbosity:0 --hints:off --run",
"lisp": "sbcl --script",
"kit": "kitc --run",
"v": "v run",
"sass": "sass --style expanded",
"scss": "scss --style expanded",
"less": "cd $dir && lessc $fileName $fileNameWithoutExt.css",
"FortranFreeForm": "cd $dir && gfortran $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt",
"fortran-modern": "cd $dir && gfortran $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt",
"fortran_fixed-form": "cd $dir && gfortran $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt",
"fortran": "cd $dir && gfortran $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt",
"sml": "cd $dir && sml $fileName",
"mojo": "mojo run",
"erlang": "escript",
"spwn": "spwn build",
"pkl": "cd $dir && pkl eval -f yaml $fileName -o $fileNameWithoutExt.yaml",
"gleam": "gleam run -m $fileNameWithoutExt"
},
}
  • 标题: Vscode 自定义配置操作
  • 作者: hybpjx
  • 创建于 : 2025-03-24 17:25:00
  • 更新于 : 2025-03-26 13:54:25
  • 链接: http://hybpjx.github.io/2025/03/24/Vscode-自定义配置操作/
  • 版权声明: 本文章采用 CC BY-NC-SA 4.0 进行许可。
评论