Created
February 24, 2019 21:31
-
-
Save nikkatsa/b2e1827d308626675cc7b2d3a8de0a09 to your computer and use it in GitHub Desktop.
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
:w = Write the file, save any changes | |
:w! = Force right the file, when the file is read-only, but the user has write permissions on it, this forces a write | |
:q! = The infamous quite force command (enter stackoverflow link here) | |
:set hlsearch = Add highlighting for any search terms that are found | |
:syntax enable = Enable syntax highlighting | |
:set syntax ${syntax} = VIM has lots of pre defined syntaxts | |
:set number = Set line numbers | |
:e . = VIM can act as a dir tree viewer and file navigation. This is a really cool feature | |
:options = Show all options | |
:set = Diff of options to their default values |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment