Created
May 14, 2009 19:31
-
-
Save benwyrosdick/111843 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
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 |
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
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