Last active
October 6, 2025 04:34
-
-
Save kj-sh604/2fcd58110db48b2ce82953fd43ede32d to your computer and use it in GitHub Desktop.
vscode starting point that I like (requires Vim Plugin)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "vim.cursorStylePerMode.insert": "line", | |
| "vim.cursorStylePerMode.normal": "block", | |
| "vim.cursorStylePerMode.replace": "underline", | |
| "vim.cursorStylePerMode.visual": "line", | |
| "vim.cursorStylePerMode.visualblock": "line-thin", | |
| "vim.cursorStylePerMode.visualline": "line", | |
| "vim.handleKeys": { | |
| "<C-d>": true, | |
| "<C-x>": true, | |
| "<C-c>": true, | |
| "<C-z>": true, | |
| "<C-s>": true, | |
| "<C-p>": true, | |
| "<C-i>": false, | |
| "<C-n>": false, | |
| "<C-k>": false, | |
| "<C-w>": false | |
| }, | |
| "vim.history": 1000, | |
| "vim.statusBarColorControl": false, | |
| "vim.shell": "/bin/sh", | |
| "vim.textwidth": 120, | |
| "vim.vimrc.enable": true, | |
| "vim.vimrc.path": "$HOME/.code-vimrc", | |
| "editor.wordWrap": "on", | |
| "editor.smoothScrolling": false, | |
| "workbench.reduceMotion": "on", | |
| "editor.cursorBlinking": "solid", | |
| "editor.minimap.enabled": false, | |
| "editor.codeLens": false, | |
| "editor.quickSuggestions": { | |
| "other": false, | |
| "comments": false, | |
| "strings": false | |
| }, | |
| "keyboard.dispatch": "keyCode", | |
| "editor.lineNumbers": "relative", | |
| "editor.fontWeight": "normal", | |
| "editor.tokenColorCustomizations": { | |
| "textMateRules": [ | |
| { | |
| "scope": [ | |
| "markup.bold", | |
| "strong", | |
| "punctuation.definition.bold" | |
| ], | |
| "settings": { | |
| "fontStyle": "" | |
| } | |
| }, | |
| { | |
| "scope": [ | |
| "markup.italic", | |
| "emphasis", | |
| "punctuation.definition.italic" | |
| ], | |
| "settings": { | |
| "fontStyle": "" | |
| } | |
| } | |
| ] | |
| }, | |
| "editor.semanticTokenColorCustomizations": { | |
| "rules": { | |
| "*.bold": { | |
| "fontStyle": "" | |
| }, | |
| "*.italic": { | |
| "fontStyle": "" | |
| } | |
| } | |
| }, | |
| "[markdown]": { | |
| "editor.fontWeight": "normal" | |
| }, | |
| } |
Comments are disabled for this gist.