Skip to content

Instantly share code, notes, and snippets.

@jeruyyap
Last active August 25, 2016 13:29
Show Gist options
  • Save jeruyyap/1dccdcd7edd63cb9c5252adad0286a71 to your computer and use it in GitHub Desktop.
Save jeruyyap/1dccdcd7edd63cb9c5252adad0286a71 to your computer and use it in GitHub Desktop.
My .vimrc file
" set basic vim options and colorscheme
set number
set showcmd
syntax on
colorscheme torte
" disable viminfo file
set viminfo=
" replace tabs with 4 spaces
set tabstop=4
set shiftwidth=4
set expandtab
" set fileformats favor unix line endings (needed on Windows)
set fileformats=unix,dos
set fileformat=unix
" enable filetype plugin and indent
filetype plugin indent on
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment