vscode使用记录

vscode使用记录

    • 下载
    • 设置插件安装路径
    • 插件
      • 主题
      • markdown
      • 编程语言
      • 前端
      • 代码提示
    • 设置默认终端
    • 参考博客
    • settings.json 设置

下载

官网下载
vscode使用记录_第1张图片
https://az764295.vo.msecnd.net/stable/e8a3071ea4344d9d48ef8a4df2c097372b0c5161/VSCode-win32-x64-1.74.2.zip
如果下载速度慢,就替换上面的链接为
https://vscode.cdn.azure.cn/stable/e8a3071ea4344d9d48ef8a4df2c097372b0c5161/VSCode-win32-x64-1.74.2.zip

设置插件安装路径

vscode使用记录_第2张图片

D:\vscode\VSCode\Code.exe --extensions-dir D:\vscode\extensions

插件

记录自己安装的vscode 插件

主题

  • One Dark Pro :配色的
  • vscode-icons :文件图标
  • Material Icon Theme: 图标与主题

markdown

  • Markdown All in One :键盘快捷方式,目录,自动预览等
  • Markdown Preview Enhanced:预览
  • Markdown Math:支持KaTex
  • paste image: 插入文件
    • 文件保存路径:Paste Image: Path
    • 在markdown插入的图片的参考基路径:Paste Image: paste

编程语言

  • Python: python
  • Language Support for Java™ by Red Hat:Java
  • Java Extension Pack:(写,测试,debug)
  • C/C++:c、c++
  • Spring Boot Extension Pack
  • mysq: cweijan.vscode-mysql-manager (连接管理,查询等)

前端

  • Beautify:美化代码
  • guides: 显示代码对齐辅助线
  • JS-CSS-HTML Formatter:代码格式化
  • Eslint:检查代码是否符合规范
  • Vetur:vue语法支持

代码提示

  • Visual Studio IntelliCode: 代码补全提示

设置默认终端

在VSCode中输入快捷键ctrl+shift+p,然后输入settings,选择下面一个
vscode使用记录_第3张图片
settings.json 文件里添加下面内容:

    "terminal.integrated.profiles.windows": {
        "Git-Bash": {
        	// 自己的bash路径
            "path": "D:\\app\\git\\bin\\bash.exe",
            "args": []
        }
    },
    "terminal.integrated.defaultProfile.windows": "Git-Bash"

参考博客

使用vscode打造python开发环境
VS Code打造一个完美的Springboot开发环境
VSCode中4个Settings(JSON)的区别与联系

settings.json 设置

{
    "workbench.colorTheme": "One Dark Pro",
    "workbench.iconTheme": "vscode-icons",
    "editor.glyphMargin": false,
    "vsicons.dontShowNewVersionMessage": true,
    "explorer.confirmDelete": false,
    "workbench.startupEditor": "newUntitledFile",
    "java.errors.incompleteClasspath.severity": "ignore",
    "java.home": "D:\\java\\jdk",
    "java.configuration.maven.userSettings": "D:\\java\\maven\\conf\\settings.xml",
    "maven.executable.path": "D:\\java\\maven\\bin\\mvn.cmd",
    "maven.terminal.useJavaHome": true,
    "maven.terminal.customEnv": [
        {
            "environmentVariable": "JAVA_HOME",
            "value": "D:\\java\\jdk"
        }
    ],
    "editor.suggestSelection": "first",
    "vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
    "files.exclude": {
        "**/.classpath": true,
        "**/.project": true,
        "**/.settings": true,
        "**/.factorypath": true
    },
    "python.jediEnabled": false,
    "explorer.confirmDragAndDrop": false,
    "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.renderIndentGuides": false,
    "[javascript]": {
        "editor.defaultFormatter": "lonefy.vscode-JS-CSS-HTML-formatter"
    },
}

你可能感兴趣的:(vscode,vscode,ide,visual,studio,code)