Skip to content

Instantly share code, notes, and snippets.

@apux
Last active October 24, 2018 11:50
Show Gist options
  • Save apux/6849059 to your computer and use it in GitHub Desktop.
Save apux/6849059 to your computer and use it in GitHub Desktop.
Plugins for vim
mkdir -p ~/.vim/autoload ~/.vim/bundle && \
curl -LSso ~/.vim/autoload/pathogen.vim https://tpo.pe/pathogen.vim
set nocompatible
execute pathogen#infect()
syntax on
filetype plugin indent on
set shiftwidth=2
set tabstop=2
set expandtab
set ruler

let g:ruby_indent_access_modifier_style="outdent"
cd ~/.vim/bundle
" FOR RAILS
git clone https://github.com/vim-ruby/vim-ruby.git
git clone https://github.com/tpope/vim-rails.git
git clone https://github.com/kchmck/vim-coffee-script.git
git clone https://github.com/tpope/vim-surround.git
git clone https://github.com/tpope/vim-repeat.git
git clone https://github.com/tpope/vim-fugitive.git
git clone https://github.com/godlygeek/tabular.git
git clone https://github.com/tpope/vim-bundler.git
" BASIC EXTENSIONS
git clone https://github.com/tpope/vim-unimpaired.git
git clone https://github.com/tpope/vim-vinegar.git
git clone https://github.com/vim-airline/vim-airline.git

" Alternative to vim-vinegar (file browser)
git clone https://github.com/scrooloose/nerdtree.git
" SNIPPETS
git clone https://github.com/tomtom/tlib_vim.git
git clone https://github.com/MarcWeber/vim-addon-mw-utils.git
git clone https://github.com/garbas/vim-snipmate.git
git clone https://github.com/LogicalBricks/vim-snippets.git
git clone https://github.com/ctrlpvim/ctrlp.vim.git
git clone https://github.com/gabrielelana/vim-markdown.git
git clone https://github.com/mattn/webapi-vim.git
git clone https://github.com/mattn/gist-vim.git
git clone https://github.com/majutsushi/tagbar.git
git clone https://github.com/rakr/vim-two-firewatch.git
git clone https://github.com/thoughtbot/vim-rspec.git
git clone https://github.com/w0ng/vim-hybrid.git
git clone https://github.com/ConradIrwin/vim-bracketed-paste
git clone https://github.com/kana/vim-textobj-user.git
git clone https://github.com/nelstrom/vim-textobj-rubyblock.git
git remote -v
git remote add upstream https://github.com/ORIGINAL_OWNER/ORIGINAL_REPOSITORY.git
git fetch upstream
git checkout master
git merge upstream/master
@thotmx
Copy link

thotmx commented Oct 12, 2013

Falta vim-cucumber

@apux
Copy link
Author

apux commented Nov 24, 2013

Ya lo agregué

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment