Skip to content

Instantly share code, notes, and snippets.

View codeithuman's full-sized avatar
🚀
To Mars!

AJ Robertson codeithuman

🚀
To Mars!
View GitHub Profile
@codeithuman
codeithuman / gist:3ca1e01e913d4f8d57c0f8305139eece
Created October 26, 2017 16:34 — forked from speric/gist:6096965
vimtutor Lesson Summaries
Lesson 1 SUMMARY
1. The cursor is moved using either the arrow keys or the hjkl keys.
h (left) j (down) k (up) l (right)
2. To start Vim from the shell prompt type: vim FILENAME <ENTER>
3. To exit Vim type: <ESC> :q! <ENTER> to trash all changes.
OR type: <ESC> :wq <ENTER> to save the changes.