Created
November 29, 2012 19:22
-
-
Save AJ-Acevedo/4171233 to your computer and use it in GitHub Desktop.
VIM configuration
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" 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