Skip to content

Instantly share code, notes, and snippets.

@AJ-Acevedo
Created November 29, 2012 19:22
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 AJ-Acevedo/4171233 to your computer and use it in GitHub Desktop.
Save AJ-Acevedo/4171233 to your computer and use it in GitHub Desktop.
VIM configuration
" Custom VIM Settings
" Set utf8 as standard encoding and en_US as the standard language
set encoding=utf8
" Turn Syntax Highliting on
syntax on
" Set the Default Color Scheme/Theme
colorscheme railscasts " Railscast Theme that matches TextMate
" Use spaces instead of tabs
set expandtab
set smarttab
" Tab == 2 spaces
set shiftwidth=2
set tabstop=2
set softtabstop=2
" Always show current position
set ruler
" Ignore case when searching
set ignorecase
" Manage 'runtimepath' with pathogen.vim. Installs plugins and runtime files
" https://github.com/tpope/vim-pathogen
call pathogen#infect()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment