|
|
|
|
|
by rgomez
492 days ago
|
|
The Vim configuration is something deeply personal, but I'd recommend as a wise choice always explore first the default settings because assuming those in your workflow gives an huge advantage using any new unconfigured vim environment eg to get out of any of the edit modes <C-c> works by default and is a great choice.
To use CUA alike shortcuts there's already:
```
source $VIMRUNTIME/mswin.vim
```
And finally, is also a good idea to get used to use <Leader> as a prefix for your own shortcuts, in my case I use the space bar as <Leader>. |
|