当前位置:   article > 正文

Visual Studio Code 设置说明_在visual studio code中text属性如何设置

在visual studio code中text属性如何设置
{
    // 自动格式化粘贴
    "editor.formatOnPaste": true,
    // 保存文件后代码格式化
    "editor.formatOnSave": true,
    // 编辑区字体大小
    "editor.fontSize": 18,
    // 集成终端字体大小
    "terminal.integrated.fontSize": 14,
    // 输出窗口字体大小
    "[Log]": {
      "editor.fontSize": 15
    },
    "editor.detectIndentation": false,
    "editor.renderControlCharacters": true,
    "editor.renderWhitespace": "all",
    // 制表符等于的空格数
    "editor.tabSize": 4,
    "editor.insertSpaces": true,
    "extensions.ignoreRecommendations": false,
    "workbench.iconTheme": "vscode-icons",
    "editor.suggestSelection": "first",
    "python.venvPath": "~/Software/venv",
    "python.venvFolders": [
        "py37",
        "py36"
    ],
    "git.autofetch": true,
    "workbench.editorAssociations": {
	"*.md": "default",
	"*.ipynb": "jupyter-notebook"
},
    "git.enableSmartCommit": true,
    "timeline.excludeSources": [],
    "leetcode.endpoint": "leetcode-cn",
    "leetcode.workspaceFolder": "/Users/roy/Desktop/workspace/MyGitCode/letmecode",
    "leetcode.hint.configWebviewMarkdown": false,
    "leetcode.hint.commandShortcut": false,
    "vim.easymotion": true,
    "vim.incsearch": true,
    "vim.useSystemClipboard": true,
    "vim.useCtrlKeys": true,
    "vim.hlsearch": true,
    "vim.insertModeKeyBindings": [
      {
        "before": ["j", "j"],
        "after": ["<Esc>"]
      }
    ],
    "vim.normalModeKeyBindingsNonRecursive": [
      {
        "before": ["<leader>", "d"],
        "after": ["d", "d"]
      },
      {
        "before": ["<C-n>"],
        "commands": [":nohl"]
      }
    ],
    "vim.leader": "<space>",
    "vim.handleKeys": {
      "<C-a>": false,
      "<C-f>": false
    },
    "cmake.configureOnOpen": true,
    "cmake.configureSettings": {
    
    },
    "files.autoSave": "afterDelay",
    "jupyter.alwaysTrustNotebooks": true,
    "vsicons.dontShowNewVersionMessage": true,
    "editor.tabCompletion": "onlySnippets",
"python.languageServer": "None",
"editor.cursorStyle": "line",
"editor.lineNumbers": "on",
"editor.wordSeparators": "/\\()\"':,.;<>~!@#$%^&*|+=[]{}`?-",
"editor.wordWrap": "off",
"notebook.cellToolbarLocation": {
	"default": "right",
	"jupyter-notebook": "left"
},
"terminal.integrated.defaultProfile.osx": "bash",
"leetcode.filePath": {

	"default": {
		"folder": "",
		"filename": "${id}.${kebab-case-name}.${ext}"
	}
},
"leetcode.hint.setDefaultLanguage": false,
"python.autoComplete.extraPaths": [
]
}
  • 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
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号