Skip to content

Instantly share code, notes, and snippets.

@srijs
Last active December 12, 2015 03:28
Show Gist options
  • Save srijs/4706630 to your computer and use it in GitHub Desktop.
Save srijs/4706630 to your computer and use it in GitHub Desktop.
syntax on
set relativenumber
set sw=2
set tabstop=2
set expandtab
set laststatus=2
set background=dark
color molokai
set mouse=a
let g:neocomplcache_enable_at_startup = 1
let mapleader = ","
map <C-g>s :Gstatus<CR>
map <C-g>b :Gblame<CR>
map <C-g>c :Gcommit<CR>
map <C-h> :JSHint<CR>
map <C-l> :TagbarToggle<CR>
set nocompatible
filetype off
set rtp+=~/.vim/bundle/vundle/
call vundle#rc()
Bundle 'gmarik/vundle'
Bundle 'majutsushi/tagbar'
Bundle 'tpope/vim-fugitive'
Bundle 'Lokaltog/vim-powerline'
Bundle 'git@github.com:Shougo/neocomplcache.git'
Bundle 'kien/ctrlp.vim'
Bundle 'walm/jshint.vim'
filetype plugin indent on
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment