Created
October 25, 2013 17:35
-
-
Save davidbella/7158661 to your computer and use it in GitHub Desktop.
Vim: My .vimrc
This file contains hidden or 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
set nocompatible | |
set number | |
set cursorline | |
set ruler | |
set showmatch | |
set autoindent | |
set smartindent | |
set smarttab | |
set expandtab | |
set shiftwidth=2 | |
set tabstop=2 | |
set backspace=2 | |
set listchars=tab:>-,trail:. | |
set list! | |
set ignorecase | |
set smartcase | |
set incsearch | |
set hlsearch | |
set ttymouse=xterm2 | |
set mouse=a | |
set scrolloff=8 | |
set wildmode=longest,list | |
syntax enable | |
set background=dark | |
colorscheme pablo | |
call pathogen#infect() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment