-
-
Save EvanLovely/d14fd8a39cd1ad74e6e322119b30ce23 to your computer and use it in GitHub Desktop.
A .vimrc with the bare minimum baseline defaults
This file contains 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
set backspace=2 " backspace in insert mode works like normal editor | |
set shiftwidth=2 " indent by 2 spaces when auto-indenting | |
set softtabstop=2 " indent by 2 spaces when hitting tab | |
syntax on " syntax highlighting | |
filetype indent on " activates indenting for files | |
set autoindent " auto indenting | |
set number " line numbers | |
colorscheme desert " colorscheme desert | |
set nobackup " get rid of anoying ~file |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment