Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Vim Plug - my favorite plugin manager
Search
Matthias Günther
February 20, 2015
Technology
0
500
Vim Plug - my favorite plugin manager
I will go through vim-plug and tell you why it's the best plugin manager for Vim in the world.
Matthias Günther
February 20, 2015
Tweet
Share
More Decks by Matthias Günther
See All by Matthias Günther
copymatch_and_dadbod.pdf
wikimatze
0
670
devdocs - offline language programming support
wikimatze
0
430
Flog, a New Git Branch extension
wikimatze
0
680
Cmus
wikimatze
0
85
cmus and vim
wikimatze
0
930
vimfest-2016-opening-keynote
wikimatze
0
75
Get productive with vimtex for LaTeX
wikimatze
0
710
Weechat - another IRC client
wikimatze
0
1.1k
Synchronize gitter and IRC
wikimatze
0
190
Other Decks in Technology
See All in Technology
DMBOKを使ってレバレジーズのデータマネジメントを評価した
leveragestech
0
460
脳が溶けた話 / Melted Brain
keisuke69
1
1.1k
LLMに何を任せ、何を任せないか
cap120
10
6.1k
互換性のある(らしい)DBへの移行など考えるにあたってたいへんざっくり
sejima
PRO
0
330
CREがSLOを握ると 何が変わるのか
nekomaho
0
250
Kiro Meetup #7 Kiro アップデート (2025/12/15〜2026/3/20)
katzueno
2
270
The essence of decision-making lies in primary data
kaminashi
0
180
私がよく使うMCPサーバー3選と社内で安全に活用する方法
kintotechdev
0
140
Oracle AI Database@AWS:サービス概要のご紹介
oracle4engineer
PRO
3
2k
Astro Islandsの 内部実装を 「日本で一番わかりやすく」 ざっくり解説!
knj
0
340
ThetaOS - A Mythical Machine comes Alive
aslander
0
220
Physical AI on AWS リファレンスアーキテクチャ / Physical AI on AWS Reference Architecture
aws_shota
1
200
Featured
See All Featured
How to Grow Your eCommerce with AI & Automation
katarinadahlin
PRO
1
160
Mobile First: as difficult as doing things right
swwweet
225
10k
Are puppies a ranking factor?
jonoalderson
1
3.2k
コードの90%をAIが書く世界で何が待っているのか / What awaits us in a world where 90% of the code is written by AI
rkaga
61
43k
Ruling the World: When Life Gets Gamed
codingconduct
0
180
Thoughts on Productivity
jonyablonski
75
5.1k
The Power of CSS Pseudo Elements
geoffreycrofte
82
6.2k
SEOcharity - Dark patterns in SEO and UX: How to avoid them and build a more ethical web
sarafernandez
0
150
GraphQLとの向き合い方2022年版
quramy
50
14k
BBQ
matthewcrist
89
10k
YesSQL, Process and Tooling at Scale
rocio
174
15k
Believing is Seeing
oripsolob
1
99
Transcript
Vim plug
Who Am I @wikimatze Running vimberlin.de Writing padrinobook.com
The pro easy setup concise, intuitive syntax parallel installation/update on-demand
loading
Installation curl -fLo ~/.vim/autoload/plug.vim --create-dirs \ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
Example vimrc call plug#begin('~/.vim/plugged') Plug 'junegunn/seoul256.vim' Plug 'junegunn/vim-easy-align' call plug#end()
On-demand loading Plug 'Eckankar/vim-latex-folding', { 'for': 'tex' } Plug 'othree/html5-syntax.vim',
{ 'for': ['html', 'md'] } Plug 'scrooloose/nerdtree', { 'on': 'NERDTreeToggle' }
Using git URL and tag Plug 'https://github.com/Shougo/neosnippet.vim' Plug 'bling/vim-airline' ,
'v0.7' Plug 'wikimatze/tocdown', { 'tag': 'v.1.0.1', 'on': 'TocdownToggle' }
Post-update hook Plug 'Shougo/vimproc.vim', { 'do': 'make' }
Commands I PlugInstall|PlugUpdate [name ...] … install/update plugins PlugDiff …
see the updated changes from the previous PlugUpdate
Commands II PlugClean[!] … remove unused directories (! without prompt)
PlugUpgrade … upgrade vim-plug itself
Commands III PlugStatus … Check the status of plugins (loaded?)
PlugSnapshot [output path] … generate script for restoring the current snapshot of the plugins
Book Club https://www.flickr.com/photos/ infowidget/2319637289
The VimL Primer https://pragprog.com/book/ bkviml/the-viml-primer
Thanks For being here and make Vimberlin happen!