vs-code 自用配置

{
    
    
    "remote.SSH.remotePlatform": {
    
    
    },
    "files.autoGuessEncoding": true,
    "files.autoSave": "afterDelay",
    "files.exclude": {
    
     //隐藏一些碍眼的文件夹
        "**/.git": true,
        "**/.svn": true,
        "**/.hg": true,
        "**/CVS": true,
        "**/.DS_Store": true
    },
    "files.watcherExclude": {
    
     //不索引一些不必要索引的大文件夹以减少内存和CPU消耗
        "**/.git/objects/**": true,
        "**/.git/subtree-cache/**": true
    },
    "window.dialogStyle": "custom",
    "cmake.configureOnOpen": true,
    "explorer.confirmDelete": false,
    "workbench.colorTheme": "One Dark Pro Flat",
    "workbench.iconTheme": "material-icon-theme",
    "editor.fontSize": 15,
    "editor.formatOnType": true,
    "editor.smoothScrolling": true,//使编辑器滚动变平滑
    "editor.formatOnPaste": true,//在粘贴时格式化代码
    "editor.tabCompletion": "on",//启用Tab补全
    "editor.cursorBlinking": "smooth", //使编辑器光标的闪烁平滑,有呼吸感
    "editor.fontFamily": "'JetBrains Mono','楷体'", //字体设置
    "editor.fontLigatures": true, //启用字体连字
    "editor.detectIndentation": false, //不基于文件内容选择缩进用制表符还是空格
    "editor.renderWhitespace": "boundary", //除了两个单词之间用于分隔单词的一个空格,以一个小灰点的样子使空格可见
    "editor.renderControlCharacters": true, //编辑器中显示不可见的控制字符
    "editor.stickyTabStops": true, //在缩进上移动光标时四个空格一组来移动,就仿佛它们是制表符(\t)一样
    "editor.wordBasedSuggestions": false, //关闭基于文件中单词来联想的功能(语言自带的联想就够了,开了这个会导致用vscode写MarkDown时的中文引号异常联想)
    "editor.linkedEditing": true, //html标签自动重命名(喜大普奔!终于不需要Auto Rename Tag插件了!)
    "editor.wordWrap": "on", //在文件内容溢出vscode显示区域时自动折行
    "editor.insertSpaces": true, //敲下Tab键时插入4个空格而不是制表符
    "http.proxyStrictSSL": false,
    "go.toolsManagement.autoUpdate": true,
    "tabnine.experimentalAutoImports": true,
    /*terminal*/
    "terminal.integrated.defaultProfile.windows": "Command Prompt", //将终端设为cmd,个人比较喜欢cmd作为终端
    "terminal.integrated.cursorBlinking": true, //终端光标闪烁
    "terminal.integrated.rightClickBehavior": "default", //在终端中右键时显示菜单而不是粘贴(个人喜好)
    "terminal.integrated.fontFamily": "JetBrains Mono",
    "terminal.integrated.fontSize": 14,
    "terminal.integrated.fontWeight": "normal",
    "terminal.integrated.fontWeightBold": "bold",
    /*search*/
    "search.followSymlinks": false,
}

猜你喜欢

转载自blog.csdn.net/wang03989/article/details/128275858