Skip to content

Instantly share code, notes, and snippets.

@bpk-t
Created February 18, 2019 10:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bpk-t/a089b1c2bf868890314ce4226defc54c to your computer and use it in GitHub Desktop.
Save bpk-t/a089b1c2bf868890314ce4226defc54c to your computer and use it in GitHub Desktop.
{
"editor.detectIndentation": false,
"editor.insertSpaces": false,
"window.zoomLevel": 0,
"editor.renderLineHighlight": "all", // 選択中の行を強調する
"workbench.colorCustomizations": { // カラーテーマに上書きする個別の設定
"editor.background": "#121817", // エディタ背景色
"editor.lineHighlightBackground": "#740ca0", // 選択している行の強調色
},
"editor.lineHeight": 0,
"workbench.editor.enablePreview": false,
"vim.useSystemClipboard": true,
"vim.easymotion": true,
"vim.visualstar": true,
"vim.leader": "<space>",
"vim.hlsearch": true,
"vim.normalModeKeyBindingsNonRecursive": [
{
"before": ["f"],
"after": ["leader", "leader", "s"]
},
{
"before": ["n"],
"after": ["n", "z", "z"]
},
{
"before": ["N"],
"after": ["N", "z", "z"]
},
{
"before": ["j"],
"after": ["j", "z", "z"]
},
{
"before": ["k"],
"after": ["k", "z", "z"]
},
{
"before": ["g", "d"],
"after": ["g", "d", "z", "z"]
},
{
"before": ["<C-o>"],
"after": ["<C-o>", "z", "z"]
},
],
"vim.insertModeKeyBindings": [
{
"before": ["j", "j"],
"after": ["<Esc>"]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment