Skip to content

Instantly share code, notes, and snippets.

@aarti
Created March 15, 2017 05:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aarti/ebaefe193c259061e73a5b45d8ab7c4d to your computer and use it in GitHub Desktop.
Save aarti/ebaefe193c259061e73a5b45d8ab7c4d to your computer and use it in GitHub Desktop.
set nocompatible " be iMproved, required
" #set backspace=indent,eol,start
filetype off " required
nnoremap <BS> X
set backspace=indent,eol,start
set nu
" 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 'fatih/vim-go'
Plugin 'vim-ruby/vim-ruby'
Plugin 'tpope/vim-rails'
Plugin 'scrooloose/nerdtree'
Plugin 'thoughtbot/vim-rspec'
Plugin 'Chiel92/vim-autoformat'
" The following are examples of different formats supported.
" Keep Plugin commands between vundle#begin/end.
" All of your Plugins must be added before the following line
call vundle#end() " required
filetype plugin indent on " required
syntax on
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment