Last active
March 18, 2024 21:36
-
-
Save jbenner-radham/d2145c6ee06a13ea5b011b7cee047469 to your computer and use it in GitHub Desktop.
My Vim config.
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
| " Disable compatibility with vi which can cause unexpected issues. | |
| set nocompatible | |
| " Turn syntax highlighting on. | |
| syntax on | |
| " Add numbers to each line on the left-hand side. | |
| set number | |
| " Enable backspace in insert mode on macOS. | |
| set backspace=indent,eol,start |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment