Skip to content

Instantly share code, notes, and snippets.

@josa42
Last active June 30, 2016 14:36
Show Gist options
  • Save josa42/b821b48c55257e1f34493e42b469d6e3 to your computer and use it in GitHub Desktop.
Save josa42/b821b48c55257e1f34493e42b469d6e3 to your computer and use it in GitHub Desktop.
" 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