Skip to content

Instantly share code, notes, and snippets.

@thotmx
Forked from apux/1_vim_short.md
Last active January 23, 2016 21:44
Show Gist options
  • Save thotmx/6956448 to your computer and use it in GitHub Desktop.
Save thotmx/6956448 to your computer and use it in GitHub Desktop.
mkdir -p ~/.vim/autoload ~/.vim/bundle; \
curl -LSso ~/.vim/autoload/pathogen.vim https://tpo.pe/pathogen.vim

Agregar estas líneas al archivo ~/.vimrc

execute pathogen#infect()
set nocompatible
syntax on
filetype plugin indent on
set shiftwidth=2
set tabstop=2
set expandtab

map <Left> <Nop>
map <Right> <Nop>
map <Up> <Nop>
map <Down> <Nop>
cd ~/.vim/bundle
git clone https://github.com/vim-ruby/vim-ruby.git
git clone https://github.com/scrooloose/nerdtree.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/mattn/gist-vim.git
git clone https://github.com/plasticboy/vim-markdown.git
git clone https://github.com/tpope/vim-cucumber.git
git clone git://github.com/tpope/vim-vinegar.git
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment