码迷,mamicode.com
首页 > 其他好文 > 详细

vs code settings

时间:2020-01-27 15:18:26      阅读:74      评论:0      收藏:0      [点我收藏+]

标签:bind   mil   textinput   auto   handle   rdo   lld   class   family   

  • settings.json (ctrl+,)
    安装Jetbrains Mono Microsoft Yahei UI字体,Darcula Theme主题,vscode-iconsvim插件
{
    "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,
        "<C-p>": false,
        "<C-n>": false
    },
    "vim.useSystemClipboard": true
}
  • 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"
    }
]

插件:

  • Better PageUp / PageDown (russelldavis.better-pageup-pagedown)
  • Bracket Pair Colorizer (coenraads.bracket-pair-colorizer)

vs code settings

标签:bind   mil   textinput   auto   handle   rdo   lld   class   family   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!