-
-
Save ryanjadhav/2997736 to your computer and use it in GitHub Desktop.
vimrc
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
| set softtabstop=2 | |
| set shiftwidth=2 | |
| set tabstop=2 | |
| set expandtab "expandtab (whitespace) | |
| set number "line numbers | |
| set ai "autoindent | |
| set si "smartindent | |
| set tw=79 "wrap on 79 | |
| set sta "smarttab | |
| set history=100 "remember more than 20 cmd-history | |
| set nobackup "don't generate swap and backup files | |
| set nowb | |
| set noswapfile | |
| syntax on | |
| filetype plugin indent on | |
| colorscheme slate |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment