Skip to content

Instantly share code, notes, and snippets.

@adscriven
Last active March 1, 2017 20:11
Show Gist options
  • Save adscriven/8bc1c58047af84b36247cbbe30732d99 to your computer and use it in GitHub Desktop.
Save adscriven/8bc1c58047af84b36247cbbe30732d99 to your computer and use it in GitHub Desktop.
Vim settings: a basic starting point.
" basicsettings.vim -- a starting point for configuring Vim.
" Adjust 'shiftwidth' and 'expandtab' to taste.
" Don't copy and paste this file without reading the documentation for
" all the options, e.g. :help 'shiftwidth', and understanding what they
" do.
" Indentation
set autoindent backspace=2 shiftwidth=4 softtabstop=-1 expandtab shiftround
" Feedback and searching
set showmode showmatch report=0 incsearch ignorecase smartcase
" Command line
set wildmenu history=999 viminfo+=n~/.viminfo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment