Skip to content

Instantly share code, notes, and snippets.

@kaizakin
Last active October 13, 2025 11:08
Show Gist options
  • Select an option

  • Save kaizakin/a61e4969fdab48091971454c4f9c2dbb to your computer and use it in GitHub Desktop.

Select an option

Save kaizakin/a61e4969fdab48091971454c4f9c2dbb to your computer and use it in GitHub Desktop.
{
"workbench.editor.empty.hint": "hidden",
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"editor.linkedEditing": true,
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
"editor.cursorSmoothCaretAnimation": "on",
"editor.cursorBlinking": "smooth",
"editor.codeActionsOnSave": {},
"editor.fontFamily": "MonoLisa",
"editor.fontLigatures": true,
"files.autoSave": "afterDelay",
"vim.useSystemClipboard": true,
"vim.visualModeKeyBindingsNonRecursive": [
{
"before": ["p"],
"commands": ["editor.action.clipboardPasteAction", "extension.vim_escape"]
}
],
"vim.easymotion": true,
"vim.incsearch": true,
"vim.useCtrlKeys": true,
"vim.hlsearch": true,
"vim.normalModeKeyBindingsNonRecursive": [
{
"before": ["<C-n>"],
"commands": [":nohl"]
},
{
"before": ["d", "d"],
"after": ["\"", "_", "d", "d"]
},
{
"before": ["d"],
"after": ["\"", "_", "d"]
}
],
"vim.leader": "<space>",
"vim.handleKeys": {
"<C-a>": false,
"<C-f>": false
},
"extensions.experimental.affinity": {
"vscodevim.vim": 1
},
"workbench.tree.indent": 16,
"workbench.tree.renderIndentGuides": "always",
"workbench.colorCustomizations": {
"tree.indentGuidesStroke": "#555"
},
"window.titleBarStyle": "custom",
"workbench.editor.enablePreview": false,
"[typescript]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"workbench.sideBar.location": "right",
"[typescriptreact]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"gitlens.graph.minimap.dataType": "lines",
"gitlens.graph.minimap.enabled": false,
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"window.commandCenter": true,
"files.exclude": {
"**/.DS_Store": false,
"**/.git": false,
"**/.hg": false,
"**/.svn": false,
"**/Thumbs.db": false
},
"editor.autoClosingBrackets": "always",
"editor.cursorStyle": "line-thin",
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment