Created
February 17, 2011 20:38
-
-
Save russ/832629 to your computer and use it in GitHub Desktop.
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
set nocompatible | |
" Use pathogen to easily modify the runtime path to include all | |
" plugins under the ~/.vim/bundle directory | |
call pathogen#helptags() | |
call pathogen#runtime_append_all_bundles() | |
" change the mapleader from \ to , | |
let mapleader="," | |
" Quickly edit/reload the vimrc file | |
nmap <silent> <leader>e :e $MYVIMRC<CR> | |
nmap <silent> <leader>s :so $MYVIMRC<CR> | |
syntax on | |
filetype on | |
filetype plugin on | |
filetype indent on | |
colorscheme vividchalk | |
" Common Typos | |
cmap W w | |
cmap Q q | |
set hidden | |
set nowrap " don't wrap lines | |
set tabstop=4 " a tab is four spaces | |
set backspace=indent,eol,start " allow backspacing over everything in insert mode | |
set autoindent " always set autoindenting on | |
set copyindent " copy the previous indentation on autoindenting | |
set number " always show line numbers | |
set shiftwidth=2 " number of spaces to use for autoindenting | |
set tabstop=2 | |
set backspace=2 | |
set shiftround " use multiple of shiftwidth when indenting with '<' and '>' | |
set showmatch " set show matching parenthesis | |
set ignorecase " ignore case when searching | |
set smartcase " ignore case if search pattern is all lowercase, case-sensitive otherwise | |
set smarttab " insert tabs on the start of a line according to shiftwidth, not tabstop | |
set hlsearch " highlight search terms | |
set incsearch " show search matches as you type | |
set expandtab | |
set listchars=tab:>\ ,trail:- | |
set wildmode=longest,list | |
set history=1000 " remember more commands and search history | |
set undolevels=1000 " use many muchos levels of undo | |
set wildignore=*.swp | |
set title " change the terminal's title | |
set visualbell " don't beep | |
set noerrorbells " don't beep | |
set nobackup | |
set noswapfile | |
" Clear search by searching for nothing | |
nmap <silent> <leader>/ :let @/=""<CR> | |
map <leader>n :NERDTreeToggle<CR> | |
let g:miniBufExplMapWindowNavVim = 1 | |
let g:miniBufExplMapWindowNavArrows = 1 | |
let g:miniBufExplMapCTabSwitchBufs = 1 | |
let g:miniBufExplModSelTarget = 1 | |
hi User1 term=underline cterm=bold ctermfg=Cyan ctermbg=Blue guifg=#40ffff guibg=#0000aa | |
set statusline=%1*%F%m%r%h%w%=%(%c%V\ %l/%L\ %P%) | |
set laststatus=2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment