Skip to content

Instantly share code, notes, and snippets.

@ordoghl
Created August 7, 2013 12:46
Show Gist options
  • Save ordoghl/6173756 to your computer and use it in GitHub Desktop.
Save ordoghl/6173756 to your computer and use it in GitHub Desktop.
set t_Co=256
colorscheme distinguished
syntax on
call pathogen#infect()
set autoindent
set copyindent
set tabstop=2
set expandtab
set shiftwidth=2
set number
set autoread
set ruler
set ttyfast
set noerrorbells
set showcmd
set nobackup
set noswapfile
set title
set history=1000
set undolevels=1000
set nowrap
set backspace=indent,eol,start
set smarttab
set hidden
set pastetoggle=<F2>
filetype on
filetype indent on
filetype plugin on
set incsearch
set ignorecase
set hlsearch
set showmatch
set diffopt=filler,iwhite
set scrolloff=1
set ruler
set visualbell
map <up> <nop>
map <down> <nop>
map <left> <nop>
map <right> <nop>
imap <up> <nop>
imap <down> <nop>
imap <left> <nop>
imap <right> <nop>
"nmap <silent> <A-Up> :wincmd k<CR>
"nmap <silent> <A-Down> :wincmd j<CR>
"nmap <silent> <A-Left> :wincmd h<CR>
"nmap <silent> <A-Right> :wincmd l<CR>
nnoremap f :Unite -start-insert file<Enter>
set runtimepath^=~/.vim/bundle/ctrlp.vim
let g:ctrlp_map = '<c-p>'
let g:ctrlp_cmd = 'CtrlP'
let g:ctrlp_working_path_mode = 'ra'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment