Skip to content

Instantly share code, notes, and snippets.

@neversun
Created September 3, 2015 17:42
Show Gist options
  • Save neversun/375014d18e0f9d7fd474 to your computer and use it in GitHub Desktop.
Save neversun/375014d18e0f9d7fd474 to your computer and use it in GitHub Desktop.
set shell=/bin/bash
set nocompatible " be iMproved, required
filetype off " required
set number
syntax enable
set t_Co=16
set background=dark
colorscheme solarized
set expandtab
set copyindent
set preserveindent
set softtabstop=0
set shiftwidth=2
set tabstop=2
nnoremap <F3> :NumbersToggle<CR>
nnoremap <F4> :NumbersOnOff<CR>
set hlsearch
set laststatus=2 " Display vim-airline always
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" alternatively, pass a path where Vundle should install plugins
"call vundle#begin('~/some/path/here')
" let Vundle manage Vundle, required
Plugin 'gmarik/Vundle.vim'
Plugin 'suan/vim-instant-markdown', {'rtp': 'after'}
Plugin 'tpope/vim-fugitive'
Plugin 'tpope/vim-rails'
Plugin 'vim-ruby/vim-ruby'
Plugin 'tpope/vim-cucumber'
Plugin 'tpope/vim-endwise'
Plugin 'tpope/vim-haml'
Plugin 'myusuf3/numbers.vim'
Plugin 'scrooloose/syntastic'
Plugin 'Shougo/neocomplcache.vim'
Plugin 'MarcWeber/vim-addon-mw-utils'
Plugin 'tomtom/tlib_vim'
Plugin 'garbas/vim-snipmate'
Plugin 'honza/vim-snippets'
" Angular.js
Plugin 'burnettk/vim-angular'
Plugin 'pangloss/vim-javascript'
Plugin 'othree/javascript-libraries-syntax.vim'
Plugin 'claco/jasmine.vim'
Plugin 'matthewsimo/angular-vim-snippets'
" ####
Plugin 'ervandew/supertab'
Plugin 'valloric/MatchTagAlways'
"improve autocomplete menu color
highlight Pmenu ctermbg=238 gui=bold
Plugin 'tomtom/tcomment_vim' "comment out with gc
Plugin 'altercation/vim-colors-solarized'
Plugin 'vim-scripts/winresizer.vim'
Plugin 'scrooloose/nerdtree'
Plugin 'kien/ctrlp.vim'
Plugin 'bling/vim-airline'
Plugin 'Raimondi/delimitMate'
Plugin 'easymotion/vim-easymotion'
" All of your Plugins must be added before the following line
call vundle#end() " required
filetype plugin indent on " required
" To ignore plugin indent changes, instead use:
"filetype plugin on
"
" Brief help
" :PluginList - lists configured plugins
" :PluginInstall - installs plugins; append `!` to update or just :PluginUpdate
" :PluginSearch foo - searches for foo; append `!` to refresh local cache
" :PluginClean - confirms removal of unused plugins; append `!` to auto-approve removal
"
" see :h vundle for more details or wiki for FAQ
" Put your non-Plugin stuff after this line
call togglebg#map("<F5>")
map <Leader> <Plug>(easymotion-prefix)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment