Last active
December 12, 2015 03:28
-
-
Save srijs/4706630 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
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 '[email protected]: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