Last active
April 13, 2016 10:13
-
-
Save tonygaetani/12d94b36617f758fe91065756821a300 to your computer and use it in GitHub Desktop.
basic 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
" show syntax highlighting | |
syntax enable | |
" dark theme just like my heart | |
set background=dark | |
" show line numbers | |
set number | |
" re-enable backspace usage | |
set backspace=2 | |
set backspace=indent,eol,start | |
" use 4 space charachters for indentation | |
set tabstop=4 softtabstop=0 shiftwidth=4 smarttab | |
" training wheels | |
noremap <Up> <NOP> | |
noremap <Down> <NOP> | |
noremap <Left> <NOP> | |
noremap <Right> <NOP> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment