Skip to content

Instantly share code, notes, and snippets.

@levibostian
Created April 5, 2017 18:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save levibostian/4e90d9373ff89bbd9dcb9755a016a758 to your computer and use it in GitHub Desktop.
Save levibostian/4e90d9373ff89bbd9dcb9755a016a758 to your computer and use it in GitHub Desktop.
My vimrc for Mark. In case he wants it.
" for 4 spaces indenting and auto-indent
set smartindent
set tabstop=4
set shiftwidth=4
set expandtab
" for makefiles, use tabs instead of spaces:
if has ("autocmd")
filetype on
autocmd FileType make setlocal noexpandtab
endif
" mouse functionality
set mouse=a
" visual bell instead of sound
set visualbell
" display line numbers
set number
" set syntax highlighting
syntax on
" Use case insensitive search, except when using capital letters
set ignorecase
set smartcase
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment