Skip to content

Instantly share code, notes, and snippets.

@edigreat
Created September 21, 2013 19:20
Show Gist options
  • Select an option

  • Save edigreat/6653376 to your computer and use it in GitHub Desktop.

Select an option

Save edigreat/6653376 to your computer and use it in GitHub Desktop.
vim configuration file (.vimrc)
" Pathogen
execute pathogen#infect()
call pathogen#helptags() " generate helptags for everything in 'runtimepath'
syntax on
filetype plugin indent on
set number
colorscheme desert
set background=dark
" Use Unix as the standard file type
set ffs=unix,dos,mac
" Turn backup off, since most stuff is in SVN, git et.c anyway...
set nobackup
set nowb
set noswapfile
" Use spaces instead of tabs
set expandtab
" Be smart when using tabs ;)
set smarttab
" 1 tab == 4 spaces
set shiftwidth=4
set tabstop=4
""""""""""""""""""""""""""""""
" Always show the status line
set laststatus=2
" Set to auto read when a file is changed from the outside
set autoread
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment