Skip to content

Instantly share code, notes, and snippets.

@apux
Last active October 24, 2018 11:50
Show Gist options
  • Select an option

  • Save apux/6849059 to your computer and use it in GitHub Desktop.

Select an option

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
Copy Markdown

thotmx commented Oct 12, 2013

Falta vim-cucumber

@apux
Copy link
Copy Markdown
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