Skip to content

Instantly share code, notes, and snippets.

@itkq
Last active September 1, 2017 07:24
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 itkq/2a72ad0dfd279e6c60d92a2f917036fb to your computer and use it in GitHub Desktop.
Save itkq/2a72ad0dfd279e6c60d92a2f917036fb to your computer and use it in GitHub Desktop.
vscode config
// Place your key bindings in this file to overwrite the defaults
[
{
"key": "ctrl+f",
"command": "cursorRight",
"when": "editorTextFocus"
},
{
"key": "ctrl+b",
"command": "cursorLeft",
"when": "editorTextFocus"
},
{
"key": "ctrl+n",
"command": "cursorDown",
"when": "editorTextFocus"
},
{
"key": "ctrl+p",
"command": "cursorUp",
"when": "editorTextFocus"
},
{
"key": "ctrl+a",
"command": "cursorHome",
"when": "editorTextFocus"
},
{
"key": "ctrl+e",
"command": "cursorEnd",
"when": "editorTextFocus"
}
]
// Place your settings in this file to overwrite the default settings
{
"workbench.colorTheme": "Atom One Dark",
"vim.disableAnnoyingNeovimMessage": true,
"vim.useSystemClipboard": true,
// モード切替を「jj」で行う
"vim.insertModeKeyBindings": [
{
"before": [
"j",
"f"
],
"after": [
"<Esc>"
]
}
],
// 検索ですべての一致を表示
"vim.hlsearch": true,
"go.lintOnSave": "off"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment