viscode使⽤格式的配置
viscode 现在也越来越适⽤于 python 开发使⽤的 IDEA ,慢慢不逊⾊于  pycharm 。下⾯是关于使⽤的格式【字体颜⾊,背景之类的配置】1.
2. 如果是设置的中⽂显⽰,在界⾯上是⼀个个点击配置的选项, viscode 是采取 settings.json  配置⽂件进⾏格式配置的。
editor bar 点击此图标,转到⽂件格式。
具体想配置什么见下⾯的配置。
{
"editor.fontSize": 18,
"firmDragAndDrop": false,
"extensions.autoUpdate": false,
"editor.fontFamily": "Consolas, Dengxian",
"workbench.sideBar.location": "left",
"workbench.startupEditor": "newUntitledFile",
"terminal.integrated.shell.windows": "C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\",
"Level": 0,
//设置⽤户选中代码段的颜⾊
"lorCustomizations": {
"editorBracketMatch.background": "#e4393c",//匹配括号的背景⾊
"editorCursor.foreground": "#01cd78",//编辑器光标颜⾊
// "activityBar.background":"e4393c",//活动栏背景⾊
"activityBar.foreground":"#01cd78",//活动栏前景⾊,图标颜⾊
// "editor.background":"#c5c5c5",//编辑器背景颜⾊
"editor.findMatchBackground":"#e4393c",//搜索项颜⾊
// "editor.findMatchHighlightBackground":"#01cd78",//其他搜索项颜⾊
// "editor.lineHighlightBackground":"#e4393c",//光标所在⾏⾼亮⽂本的背景颜⾊
// "editor.selectionBackground": "#01cd78",//编辑器所选内容的颜⾊
"editor.selectionHighlightBackground": "#9c9c9c",//与所选内容具有相同内容的区域颜⾊
// "editor.rangeHighlightBackground": "#e4393c",//突出显⽰范围的背景颜⾊,例如 "Quick Open" 和“查”功能
// "editorGutter.background": "#01cd78",//编辑器导航线的背景⾊,导航线包括边缘符号和⾏号
// "editorLineNumber.foreground": "#01cd78",//编辑器⾏号颜⾊
//// "sideBar.background": "#01cd78",//侧边栏背景⾊
// "sideBar.foreground": "#01cd78",//侧边栏前景⾊
// "sideBarSectionHeader.background": "#01cd78",//侧边栏节标题的背景颜⾊
// "statusBar.background": "#01cd78",//标准状态栏背景⾊
// "FolderBackground": "#01cd78",//没有打开⽂件夹时状态栏的背景⾊
// "statusBar.debuggingBackground": "#01cd78",//调试程序时状态栏的背景⾊
// "tab.activeBackground": "#01cd78",//    活动选项卡的背景⾊
// "tab.activeForeground": "#01cd78",//    活动组中活动选项卡的前景⾊
// "tab.inactiveBackground": "#01cd78",// ⾮活动选项卡的背景⾊
// "tab.inactiveForeground": "#01cd78",// 活动组中⾮活动选项卡的前景⾊
"terminal.foreground":"#01aecd",
},
// 函数名等颜⾊
"kenColorCustomizations":{
/
/ "textMateRules": [
//    {
//        "scope":"",
//        "settings": {
//            "foreground": "#FF0000",
//            "fontStyle": "bold"
//        }
//    }
// ],//规则与样式
"functions": "#4b99ce",//函数颜⾊
"strings": "#7fb7a9",//字符串颜⾊
"keywords": "#ff1302",//关键字颜⾊
"types": "#ecd8d8",//类型定义颜⾊
"variables": "#ece8e8",//变量颜⾊
"numbers": "#9d0cc9",//数字颜⾊
// "comments": "#FF0000",//注释颜⾊
},
"vim.useCtrlKeys": false,
"files.autoSave": "off",
"lorTheme": "Son of Obsidian",  }