Last active
June 30, 2016 14:36
-
-
Save josa42/b821b48c55257e1f34493e42b469d6e3 to your computer and use it in GitHub Desktop.
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
" Minimal .vimrc | |
" Colors | |
syntax enable | |
colorscheme desert | |
set background=dark | |
" Basics | |
set nobackup | |
set nowb | |
set noswapfile | |
set autoread | |
set hid | |
" Search | |
set ignorecase | |
set hlsearch | |
set magic | |
set showmatch | |
" No annoying sound on errors | |
set noerrorbells | |
set novisualbell | |
set t_vb= | |
set tm=500 | |
" Text | |
set number | |
set expandtab | |
set smarttab | |
set shiftwidth=2 | |
set tabstop=2 | |
set ai "Auto indent | |
set si "Smart indent | |
set wrap "Wrap lines |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment