Skip to content

Instantly share code, notes, and snippets.

@benwyrosdick
Created May 14, 2009 19:31
Show Gist options
  • Save benwyrosdick/111843 to your computer and use it in GitHub Desktop.
Save benwyrosdick/111843 to your computer and use it in GitHub Desktop.
if exists('g:loaded_pathogen')
call pathogen#runtime_prepend_subdirectories(expand('~/.vim/bundles'))
end
syntax on
filetype plugin indent on
augroup vimrc
autocmd GuiEnter * set guioptions-=T columns=150 lines=70
augroup END
if filereadable(expand('~/.vimrc.local'))
source ~/.vimrc.local
endif
augroup vimrc
colorscheme blackboard
set number
set expandtab
set tabstop=2
set softtabstop=2
set shiftwidth=2
set guifont=Monaco:h12
set ruler
set hlsearch
set incsearch
"set cursorline
"set ignorecase
augroup END
" Insert blank lines above or below the current position
nmap <CR> o<Esc>k
nmap <S-CR> O<Esc>j
" move a line of text up or down
nmap <C-A-Up> ddkP
nmap <C-A-Down> ddp
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment