Slide 1

Slide 1 text

Plugin Management Carlos Hernando @chernando adrid

Slide 2

Slide 2 text

http://www.vim.org/scripts/

Slide 3

Slide 3 text

Plugins vs Scripts Robot Fight by Ariel Waldman - https://flic.kr/p/7f7eAt

Slide 4

Slide 4 text

CAOS!

Slide 5

Slide 5 text

https://github.com/tpope/vim-pathogen/

Slide 6

Slide 6 text

Install mkdir -p ~/.vim/autoload ~/.vim/bundle! curl -LSso ~/.vim/autoload/pathogen.vim https://tpo.pe/pathogen.vim

Slide 7

Slide 7 text

.vimrc execute pathogen#infect()! syntax on! filetype plugin indent on

Slide 8

Slide 8 text

Plugins ~/.vim/bundle

Slide 9

Slide 9 text

https://github.com/gmarik/Vundle.vim

Slide 10

Slide 10 text

Install git clone https://github.com/gmarik/ Vundle.vim.git ~/.vim/bundle/Vundle.vim

Slide 11

Slide 11 text

.vimrc set nocompatible! filetype off! set rtp+=~/.vim/bundle/Vundle.vim! call vundle#begin()! Plugin 'gmarik/Vundle.vim'! Plugin 'tpope/vim-fugitive'! call vundle#end()! filetype plugin indent on

Slide 12

Slide 12 text

Plugins • :PluginInstall • :PluginInstall! (:PluginUpdate)

Slide 13

Slide 13 text

Other commands • :PluginSearch • :PluginClean

Slide 14

Slide 14 text

http://vim-scripts.org/vim/scripts.html

Slide 15

Slide 15 text

http://vimawesome.com/

Slide 16

Slide 16 text

About This work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License. To view a copy of this license, visit http:// creativecommons.org/licenses/by-nc-sa/3.0/. Product names, logos and trademarks of other companies which are referenced in this document remain the property of those other companies.