Skip to content

Instantly share code, notes, and snippets.

@jaronson
Created February 20, 2015 01:25
Show Gist options
  • Save jaronson/ebd2da49ce5ea33bf7cf to your computer and use it in GitHub Desktop.
Save jaronson/ebd2da49ce5ea33bf7cf to your computer and use it in GitHub Desktop.
set nocompatible
let mapleader=","
let maplocalleader=","
let g:mapleader=","
let g:Powerline_symbols='unicode'
let g:airline_powerline_fonts=1
let g:localvimrc_ask=0
let g:indentLine_char='|'
let g:indentLine_color_term=0
let g:indentLine_noConcealCursor=""
let NERDTreeShowHidden=1
filetype plugin indent on
syntax enable
set t_Co=256
set noerrorbells
set showmatch
set expandtab
set tabstop=2
set shiftwidth=2
set backspace=indent,eol,start
set fileencodings=ucs-bom,utf-8,default,latin1
set helplang=en
set number
set nowrap
set ruler
set hls
set incsearch
set laststatus=2
set synmaxcol=480
set listchars=tab:>\ ,trail:-,extends:>,precedes:<,nbsp:+
set list " show trailing whiteshace and tabs
set showmatch
set autoindent
set copyindent
set wildignore=*.swp,*.bak,*.pyc
set pastetoggle=<F2>
set splitbelow
set splitright
iabbrev rpry require 'pry'; binding.pry
iabbrev ipdb import pdb; pdb.set_trace()
nmap <silent> <leader>c :tabnew<CR>
nmap <silent> <leader>t :tabnext<CR>
nmap <silent> <leader>p :tabprev<CR>
nmap <silent> <leader>/ :nohlsearch<CR>
map <C-l> :tabn<CR>
map <C-h> :tabp<CR>
map <C-n> :tabnew<CR>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment