Text Command New Text
--------------- ------- -----------
'Hello W|orld' ds' Hello World
(12|3+4*56)/2 ds( 123+4*56/2
<div>fo|o</div> dst foo
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
| " Use vim settings, rather then vi settings (much better!) | |
| " This must be first, because it changes other options as a side effect. | |
| set nocompatible | |
| set t_Co=256 " iTerm2 supports 256 color mode. | |
| set ai " auto indenting | |
| set history=100 " keep 100 lines of history | |
| set ruler " show the cursor position | |
| syntax on " syntax highlighting | |
| filetype plugin on " use the file type plugins |
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
| [ | |
| // ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ | |
| // β VSCODE VIM LAZYVIM KEYBINDINGS β | |
| // β Modifier Key Bindings (Ctrl, Alt, Shift) β | |
| // ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ | |
| // | |
| // This file contains keybindings that use modifier keys (Ctrl, Alt, Shift) and special | |
| // characters that need VSCode's key binding system (not Vim's). | |
| // | |
| // IMPORTANT: DO NOT put space-leader bindings here (<leader>...) |