• VSCode 常用配置


    插件安装

    1. C/C++
    2. Chinese (Simplified) (简体中文) Language Pack for Visual Studio Code
    3. Code Runner
    4. Competitive Programming Helper (cph)
    5. Error Lens
    6. macros
    7. One Dark Pro
    8. Remote - SSH
    9. Remote - SSH: Editing Configuration Files
    10. VSCode Neovim
    插件设置
    • C/C++
    // @ext:ms-vscode.cpptools
    
    // C_Cpp: Clang_format_fallback Style
    { BasedOnStyle:  Google, AccessModifierOffset: -4, AllowShortFunctionsOnASingleLine: Empty, AllowShortLambdasOnASingleLine: Empty, IndentWidth:     4, ObjCBlockIndentWidth: 4 }
    
    // C_Cpp: Clang_format_style
    { BasedOnStyle:  Google, AccessModifierOffset: -4, AllowShortFunctionsOnASingleLine: Empty, AllowShortLambdasOnASingleLine: Empty, IndentWidth:     4, ObjCBlockIndentWidth: 4 }
    
    // C_Cpp › Doxygen: Generated Style
    /** 
    
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • Code Runner
    // @ext:formulahendry.code-runner
    
    // Code-runner: Run In Terminal
    勾选
    
    // Code-runner: Save All Files Before Run
    勾选
    
    // Code-runner: Save File Before Run
    勾选
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • Competitive Programming Helper (cph)
    // @ext:DivyanshuAgrawal.competitive-programming-helper
    
    // Cph › General: Default Language
    cpp
    
    • 1
    • 2
    • 3
    • 4
    • macros
    // @ext:geddski.macros
    
    "macros": {
            "saveAndEscapeNeovim": [
                "workbench.action.files.save",
                "vscode-neovim.escape"
            ]
        },
    
    // 配合快捷键  添加键映射 keybindings.json
    {
        "key": "ctrl+s",
        "command": "macros.saveAndEscapeNeovim",
        "when": "editorTextFocus && NeoVim.mode == insert"
      }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • VSCode Neovim
    // @ext:asvetliakov.vscode-neovim
    
    // Vscode-neovim › Neovim Executable Paths: Win32
    C:\Program Files\Neovim\bin\nvim.exe
    
    • 1
    • 2
    • 3
    • 4

    推荐设置

    1. 控制具有未保存更改的编辑器的 自动保存
    // Files: Auto Save
    
    "files.autoSave": "afterDelay"
    
    • 1
    • 2
    • 3
    2. 启用自动猜测编码

    用于控制编辑器在打开文件时是否尝试自动猜测文件的编码格式。如果将该选项设置为 true,VSCode 将会在打开文件时尝试根据文件内容来猜测编码格式,以便正确地显示文本内容。

    // Files: Auto Guess Encoding
    
    "files.autoGuessEncoding": true
    
    • 1
    • 2
    • 3
    3. 平滑滚动和光标闪烁的设置

    可以提高编辑器和工作台的视觉效果,使得滚动和光标闪烁更加流畅和舒适。

      // Editor: Smooth Scrolling
    	"editor.smoothScrolling": true,
    
    // Workbench › List: Smooth Scrolling
        "workbench.list.smoothScrolling": true,
    
    // Editor: Cursor Blinking
        "editor.cursorBlinking": "smooth",
    
    // Terminal › Integrated: Smooth Scrolling
        "terminal.integrated.smoothScrolling": true,
    
    // Editor: Cursor Smooth Caret Animation
        "editor.cursorSmoothCaretAnimation": "on"
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    4. 自动格式化的设置

    通过启用这两个选项,你可以确保在粘贴内容或保存文件时,代码会自动按照规定的风格进行格式化,从而提高代码的可读性和一致性

    // Editor: Format On Paste
        "editor.formatOnPaste": true,
        
    // Editor: Format On Save
        "editor.formatOnSave": true
    
    • 1
    • 2
    • 3
    • 4
    • 5
    5. 自动换行功能

    这样做有助于提高代码的可读性,特别是当你处理较长的行时,自动换行可以使得代码更加清晰,而不需要不断地水平滚动来查看完整的行内容

    // Editor: Word Wrap
    "editor.wordWrap": "on"
    
    • 1
    • 2
    6. 按下回车键时如何接受代码建议的行为

    按下回车键会根据上下文智能地接受建议。具体来说,如果当前正在编辑的建议与已输入的内容匹配,则按下回车键将接受建议。如果没有建议,或者当前建议与已输入的内容不匹配,则按下回车键会插入一个换行符。

    这个设置可以帮助加快编码过程,特别是在使用自动完成功能时,通过智能地处理回车键的行为,使得接受建议和输入换行之间的切换更加流畅和高效

    // Editor: Accept Suggestion On Enter
    "editor.acceptSuggestionOnEnter": "smart"
    
    • 1
    • 2
    7. 建议列表中如何预先选择建议

    这意味着当你触发代码建议列表时,编辑器会优先选择最近使用过的建议项作为默认选项。这样做的目的是为了更快地访问到你最近常用的建议,从而提高编码效率。

    // Editor: Suggest Selection
        "editor.suggestSelection": "recentlyUsed"
    
    • 1
    • 2
    8. 启用自定义对话框样式

    通过启用自定义对话框样式,你可以自定义对话框窗口的外观,以满足你的应用程序或个人喜好的需求。这使得对话框能够更好地与你的应用程序整体风格相匹配,或者提供一种更加独特的用户体验

    // Window: Dialog Style
        "window.dialogStyle": "custom"
    
    • 1
    • 2
    9. 控制着是否在编辑器的概览标尺中显示断点标记

    当这个设置为 true 时,如果你在代码中设置了断点,那么在编辑器的侧边概览标尺中会显示相应的断点标记,以便你在代码中快速地查看断点的位置。这对于调试代码非常有用,因为它使得你可以轻松地浏览和导航到断点所在的位置,而不必依赖于纯文本的代码视图。

    这个设置可以帮助提高调试过程的效率,特别是在处理大型代码文件时,通过在概览标尺中显示断点标记,你可以更快地了解断点的位置分布,从而更轻松地进行调试。

    // Debug: Show Breakpoints In Overview Ruler
        "debug.showBreakpointsInOverviewRuler": true
    
    • 1
    • 2
    10. 生成 Doxygen 注释时所使用的风格

    例如,如果你在 C++ 代码中使用了 Doxygen 插件来生成文档注释,当你触发生成注释的命令时,生成的注释将会以 /** ... */ 的格式呈现在代码中。

    这种风格的 Doxygen 注释是常见的,通常用于生成代码文档和说明。

    // C_Cpp › Doxygen: Generated Style
    
    "C_Cpp.doxygen.generatedStyle": "/**"
    
    • 1
    • 2
    • 3
    10. 关闭本地历史记录功能

    表示禁用本地历史记录功能。本地历史记录功能会自动保存你对文件的更改历史,允许你在需要时回溯到以前的版本。禁用此功能后,Visual Studio Code 将不再保存文件的历史更改,因此你将无法使用本地历史记录功能来回溯文件的更改。

    这个设置通常用于根据个人偏好或者特定的工作流程来控制是否需要使用本地历史记录功能。

    // Workbench › Local History: Enabled
        "workbench.localHistory.enabled": false
    
    • 1
    • 2
    11. 设置字体族

    在这个设置中,字体族由多个字体名称组成,按照优先级顺序排列。如果操作系统中安装了指定的字体,则编辑器会使用第一个可用的字体。如果第一个字体不可用,则会依次尝试后续的字体。

    在这个例子中,字体族包括了三个字体名称:首选使用 JetBrains Mono 字体,如果系统中没有安装这个字体,则尝试使用 Courier New 字体,如果还没有,则使用 monospace 通用等宽字体。

    // Editor: Font Family
    "editor.fontFamily": "JetBrains Mono, 'Courier New', monospace",
    
    • 1
    • 2
    12. 显示匹配的括号对

    在编辑器中显示活跃(当前正在匹配的)括号对的指示线。当你在代码中选中一个括号时,它会突出显示与之匹配的另一个括号,并在它们之间显示一条指示线,以帮助你更容易地理解括号的配对关系。

    // Editor › Guides: Bracket Pairs
        "editor.guides.bracketPairs": "active",
    
    
    • 1
    • 2
    • 3

    本人的配置

    {
        "workbench.localHistory.enabled": false,
        "files.autoSave": "afterDelay",
        "editor.fontSize": 18,
        "editor.fontFamily": "JetBrains Mono, 'Courier New', monospace",
        "workbench.colorTheme": "One Dark Pro",
        "C_Cpp.clang_format_fallbackStyle": "{ BasedOnStyle:  Google, AccessModifierOffset: -4, AllowShortFunctionsOnASingleLine: Empty, AllowShortLambdasOnASingleLine: Empty, IndentWidth:     4, ObjCBlockIndentWidth: 4 }",
        "C_Cpp.clang_format_style": "{ BasedOnStyle:  Google, AccessModifierOffset: -4, AllowShortFunctionsOnASingleLine: Empty, AllowShortLambdasOnASingleLine: Empty, IndentWidth:     4, ObjCBlockIndentWidth: 4 }",
        "extensions.ignoreRecommendations": true,
        "explorer.confirmDelete": false,
        "debug.onTaskErrors": "debugAnyway",
        "remote.SSH.remotePlatform": {
            "Debian": "linux"
        },
        "extensions.experimental.affinity": {
            "asvetliakov.vscode-neovim": 1
        },
        "vscode-neovim.neovimExecutablePaths.win32": "C:\\Program Files\\Neovim\\bin\\nvim.exe",
        "macros": {
            "saveAndEscapeNeovim": [
                "workbench.action.files.save",
                "vscode-neovim.escape"
            ]
        },
        "editor.lineNumbers": "relative",
        "cph.general.defaultLanguage": "cpp",
        "window.menuBarVisibility": "compact",
        "workbench.activityBar.location": "bottom",
        "files.exclude": {
            ".vscode": true
        },
        "files.autoGuessEncoding": true,
        "editor.smoothScrolling": true,
        "workbench.list.smoothScrolling": true,
        "editor.cursorBlinking": "smooth",
        "terminal.integrated.smoothScrolling": true,
        "editor.cursorSmoothCaretAnimation": "on",
        "editor.formatOnPaste": true,
        "editor.formatOnSave": true,
        "editor.wordWrap": "on",
        "editor.acceptSuggestionOnEnter": "smart",
        "editor.suggestSelection": "recentlyUsed",
        "window.dialogStyle": "custom",
        "debug.showBreakpointsInOverviewRuler": true,
        "C_Cpp.doxygen.generatedStyle": "/**",
        "code-runner.runInTerminal": true,
        "code-runner.saveAllFilesBeforeRun": true,
        "code-runner.saveFileBeforeRun": true,
        "editor.guides.bracketPairs": "active",
    }
    
    
    • 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
  • 相关阅读:
    使用网络摄像头进行眼睛注视估计
    React-router-dom 6总结
    2021年Java面试题抢先看,够全!(持续更新中)
    Vue图片懒加载
    商场百货会员引流 购物中心会员拉新方式
    TikTok平台的两种账户有什么区别?
    Java对比对象修改前与修改后字段发生的变化
    Java 把多个音频拼接成一个
    Linux安装Tomcat
    hive插入动态分区数据时,return code 2报错解决
  • 原文地址:https://blog.csdn.net/theRavensea/article/details/138201839