Skip to content

Instantly share code, notes, and snippets.

@xemoe
Last active August 29, 2015 14:07
Show Gist options
  • Save xemoe/2e4548c6a23846061c1b to your computer and use it in GitHub Desktop.
Save xemoe/2e4548c6a23846061c1b to your computer and use it in GitHub Desktop.
Xemoe .vimrc
set nocompatible
filetype off
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'gmarik/Vundle.vim'
Plugin 'tpope/vim-fugitive'
Plugin 'bling/vim-airline'
Plugin 'nathanaelkane/vim-indent-guides'
Plugin 'jelera/vim-javascript-syntax'
Plugin 'Lokaltog/vim-easymotion'
Plugin 'scrooloose/nerdTree'
Plugin 'elzr/vim-json'
Plugin 'Shougo/neocomplete.vim'
call vundle#end()
filetype plugin indent on
set history=1000
set autoread
syntax on
set number
set laststatus=2
set noswapfile
set nobackup
set ts=4 sw=4 et
set ruler
set showcmd
set wildmenu
set incsearch
set hlsearch
set cursorline
set list
set listchars=tab:›\ ,trail:•,extends:#,nbsp:.
set encoding=utf8
set ffs=unix,mac,dos
highlight clear SignColumn
highlight clear LineNr
let g:EasyMotion_do_mapping = 0
let g:EasyMotion_smartcase = 1
nmap s <Plug>(easymotion-s)
nmap s <Plug>(easymotion-s2)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment