Skip to content

Instantly share code, notes, and snippets.

@CarlEkerot
Created June 15, 2012 08:02
Show Gist options
  • Save CarlEkerot/2935305 to your computer and use it in GitHub Desktop.
Save CarlEkerot/2935305 to your computer and use it in GitHub Desktop.
vimrc
set backspace=indent,eol,start " Allow backspace in insert mode
set history=1000 " Store lots of :cmdline history
set autoread " Reload files changed outside vim
set incsearch " Find the next match as we type the search
set viminfo='100,f1 " Save up to 100 marks, enable capital marks
set noswapfile
set nobackup
set nowb
set autoindent
set smartindent
set smarttab
set shiftwidth=4
set softtabstop=4
set tabstop=4
set expandtab
" Show tabs and spaces
set list listchars=tab:\ \ ,trail:·
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment