Created
October 20, 2010 01:17
-
-
Save ChrisBuchholz/635570 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
" appearence | |
set bg=dark | |
set number ruler | |
set numberwidth=5 | |
syntax on | |
syntax sync fromstart | |
let g:molokai_original=1 | |
colorscheme molokai | |
set scrolloff=3 | |
set virtualedit=all | |
set vb t_vb= | |
set nofoldenable | |
set nocompatible | |
set tabstop=4 | |
set shiftwidth=4 | |
set softtabstop=4 | |
set expandtab | |
set showmatch | |
set matchpairs+=<:> | |
set matchtime=3 | |
set wrap | |
set linebreak | |
filetype indent on | |
set autoindent | |
set smartindent | |
set nowrap | |
" search | |
set incsearch | |
set ignorecase | |
set smartcase | |
" esc clears last search-highlight | |
"nnoremap <C-Esc> :noh<return><esc> | |
set smartcase | |
set cursorline | |
" encoding | |
set encoding=utf8 | |
set fileencoding=utf8 | |
" navigation | |
map gn :tabnew<CR> | |
map gw :tabclose<CR> | |
" text bubbling - using Tim Pope's unimpaired plugin | |
nmap <C-Up> [e | |
nmap <C-Down> ]e | |
vmap <C-Up> [egv | |
vmap <C-Down> ]egv |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment