VSCode用户配置--自用
作者:互联网
目录
插件
自用扩展:
- C/C++
- Code-runner
- Error Lens
- Atom One Dark
- Chinese中文简体
- 驼峰翻译助手
自用setting设置
{
/*editor*/
"editor.fontFamily": "Consolas, '思源黑体', monospace", //编辑器字体:英文:consolas,中文:宋体,日语:monospace
"editor.autoClosingBrackets": "always", //是否自动插入右括号
"editor.autoClosingDelete": "always", //删除时编辑器删除对应的括号
"editor.bracketPairColorization.enabled": true, //对括号进行着色
"editor.formatOnSave": true, //保存时格式化文件
"editor.wordWrap": "on", //在视区换行
"editor.formatOnPaste": true, //是否自动格式化粘贴的内容
"editor.formatOnType": true, //编辑器是否在键入一行后自动格式化该行
"editor.mouseWheelZoom": true, //按住ctrl-鼠标滚轮调整编辑器文字大小
"editor.smoothScrolling": true, //使编辑器滚动变平滑
"editor.cursorSmoothCaretAnimation": true, //让光标移动、插入变得平滑
"editor.stickyTabStops": true, //在缩进上移动光标时四个空格一组来移动,就仿佛它们是制表符(\t)一样
/*terminal*/
"terminal.integrated.cursorBlinking": true, //终端光标闪烁
/* flies */
"files.exclude": { //要隐藏的文件类型
"**/*.exe": true
},
"files.autoSave": "afterDelay",
"files.autoSaveDelay": 100,
"files.encoding": "gb2312",
/* Code-runner */
"code-runner.saveAllFilesBeforeRun": true,
"code-runner.saveFileBeforeRun": true,
"code-runner.runInTerminal": true,
"code-runner.ignoreSelection": true, // 默认为false,效果是鼠标选中一块代码后可以单独执行,但C++是编译型语言,不适合这样用
"code-runner.executorMap": {
/* vscode中 code runner插件删除 C 生成的exe文件 */
"c": "cd $dir && gcc $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt && del $dir$fileNameWithoutExt.exe",
/* vscode中 code runner插件删除 C++ 生成的exe文件 */
"cpp": "cd $dir && g++ $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt && del $dir$fileNameWithoutExt.exe",
},
/* C_Cpp */
"C_Cpp.codeAnalysis.updateDelay": 10,
"C_Cpp.clang_format_style": "{BasedOnStyle: Chromium, AccessModifierOffset: -4, IndentWidth: 4}",
/* Error Lens */
"errorLens.gutterIconsEnabled": true, //在行号的左边显示小错误图标(个人喜好)
"errorLens.fontStyleItalic": true, //使错误信息的字体为斜体(个人喜好)
/* workbench */
"workbench.colorTheme": "Atom One Dark",
"workbench.list.smoothScrolling": true, //使文件列表滚动变平滑
/* window */
"window.dialogStyle": "custom", //使用更具有VSCode的UI风格的弹窗提示(更美观)
}
/*备用设置*/
"editor.acceptSuggestionOnEnter": "off", // 我个人的习惯,按回车时一定是真正的换行,只有tab才会接受Intellisense
"editor.tabCompletion": "on", //启用Tab补全,插入最佳建议
"editor.dragAndDrop": false, //true可以选中后拖动字体
"editor.fontLigatures": false, //启用连字
"files.defaultLanguage": "c++", // ctrl+N新建文件后默认的语言
/* explore */
"explorer.confirmDelete": false, //删除时确认:否
转载来自:https://www.cnblogs.com/jason-wei/articles/15702461.html
标签:code,VSCode,--,runner,自用,editor,&&,true,dir 来源: https://www.cnblogs.com/happinesspills/p/16542163.html