Created
March 10, 2015 11:26
-
-
Save MuhammadRahman-awin/0c574ba9cd91f45290cf 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 backspace=2 " backspace in insert mode works like normal editor | |
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 | |
set laststatus=2 | |
set paste | |
set ignorecase | |
set smartcase | |
set incsearch " search as you key in | |
set softtabstop=4 " tab size | |
set shiftwidth=4 " column width | |
set expandtab " Tab to space |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment