Last modified: 2022.10.21 by Abe Pralle
Overview
There are two modes of operation: COMMAND MODE and TEXT EDIT MODE. You begin in COMMAND MODE where each key represents a different command.
Getting Into Text Edit Mode
These commands will take you into TEXT EDIT MODE. To return to COMMAND MODE
hit the [ESC]
key.
|
Delete, Cut & Paste
|
Miscellaneous
|
Cursor Movement and Search
|
Saving
|
Configuring Vim
Vim gets its configuration values from a file in your home folder called _vimrc
(Windows) or .vimrc
(Unix and Linux).
Here's an example configuration file that may be useful to you. Save it with the appropriate name (as mentioned above), or copy and paste interesting bits into your existing vimrc: https://github.com/AbePralle/ConfigFiles/blob/main/Source/_vimrc
Afterwards, you can edit this file in Vim itself by typing:
gvim "c:\Program Files\Vim\_vimrc" # (Windows), or vim ~/.vimrc # (OS X, Unix, Linux)
to edit the configuration file.