Skip to content

Instantly share code, notes, and snippets.

@unhurried
Created March 17, 2024 12:51
Show Gist options
  • Save unhurried/1de20d2296c73d29fe98a266e737b564 to your computer and use it in GitHub Desktop.
Save unhurried/1de20d2296c73d29fe98a266e737b564 to your computer and use it in GitHub Desktop.
Visual Code Studio - User Settings
{
/* 全般設定 */
// 拡大率を少し小さめにする
"window.zoomLevel": -1,
// minimapを表示しない
"editor.minimap.enabled": false,
/* VSCodeVim設定 */
// Visual Studio Codeのキーバインドを優先する
"vim.handleKeys": {
"<C-a>": false,
"<C-f>": false,
"<C-S-f>": false,
"<C-z>": false,
"<C-s>": false,
"<C-p>": false,
"<C-S-p>": false,
},
// OSのクリップボードを利用する
"vim.useSystemClipboard": true,
// 検索結果をハイライトする
"vim.hlsearch": true,
// easymotionを有効化する
"vim.easymotion": true,
// <leader>をスペースキーに変更する
"vim.leader": "<space>",
// Shift + hjkl でまとめて移動できるようにする
"vim.normalModeKeyBindings": [
{
"before": [
"H"
],
"after": [
"1",
"0",
"h"
]
},
{
"before": [
"J"
],
"after": [
"1",
"0",
"j"
]
},
{
"before": [
"K"
],
"after": [
"1",
"0",
"k"
]
},
{
"before": [
"L"
],
"after": [
"1",
"0",
"l"
]
}
],
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment