" Sample vimrc Configuration file
" This file should be named: $HOME/.vimrc

set nocompatible           " allow for non-vi compatible features
syntax on                  " enable syntax highlighting
filetype plugin indent on  " enable filetype detection, plugins, indent
set autoindent             " turn on auto indenting

" If you prefer spaces to tabs, uncomment the following:
"  (To get a real tab with these settings, do CTRL-V TAB)
" These settings will affect file types that don't do adjust settings
" in their ftplugin file (C, C++, Chapel) but not those that do (Python)
"
" set expandtab       " replace indents with spaces
" set shiftwidth=2    " set how many spaces per indent
" set smarttab        " use spaces as indents at the beginning of lines

" Other useful commands, uncomment as desired:
"
" set background=dark " switch to color scheme for terminals with a dark background
" set ignorecase      " ignore case when searching (turn off by ": set noignorecase")
" set incsearch       " enable incremental search
" set ruler           " show cursor line at the bottom of the terminal
" set showmatch       " show bracket matches
" set showmode        " display current mode in the status line
