首页 > 其他 > 详细

vs code settings

时间:2020-01-27 14:39:34      阅读:53      评论:0      收藏:0      [点我收藏+]
  • settings.json (ctrl+,)
{
    "workbench.iconTheme": "vscode-icons",
    "workbench.colorTheme": "Darcula",

    "editor.fontFamily": "'Jetbrains Mono', 'Microsoft Yahei UI', 'Fira Code'",
    "editor.fontSize": 13,
    "editor.fontLigatures": true,
    "editor.fontWeight": "400",
    "editor.lineHeight": 20,

    "vim.handleKeys": {
        "<C-a>": false,
        "<C-f>": false,
        "<C-k>": false,
        "<C-s>": false
    }
}
  • keybindings.json (ctrl+k, ctrl+s)
// Place your key bindings in this file to override the defaultsauto[]
[
    {
        "key": "alt+l",
        "command": "cursorRight",
        "when": "textInputFocus"
    },
    {
        "key": "alt+h",
        "command": "cursorLeft",
        "when": "textInputFocus"
    },
    {
        "key": "alt+j",
        "command": "cursorDown",
        "when": "textInputFocus"
    },
    {
        "key": "alt+k",
        "command": "cursorUp",
        "when": "textInputFocus"
    }
]

vs code settings

原文:https://www.cnblogs.com/dylanchu/p/12235958.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!