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
490
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
640
devdocs - offline language programming support
wikimatze
0
410
Flog, a New Git Branch extension
wikimatze
0
640
Cmus
wikimatze
0
74
cmus and vim
wikimatze
0
890
vimfest-2016-opening-keynote
wikimatze
0
68
Get productive with vimtex for LaTeX
wikimatze
0
690
Weechat - another IRC client
wikimatze
0
1.1k
Synchronize gitter and IRC
wikimatze
0
180
Other Decks in Technology
See All in Technology
OPENLOGI Company Profile for engineer
hr01
1
45k
SCONE - 動画配信の帯域を最適化する新プロトコル
kazuho
1
400
OCIjp_Oracle AI World_Recap
shinpy
1
180
20251024_TROCCO/COMETAアップデート紹介といくつかデモもやります!_#p_UG 東京:データ活用が進む組織の作り方
soysoysoyb
0
120
AI AgentをLangflowでサクッと作って、1日働かせてみた!
yano13
1
160
プロファイルとAIエージェントによる効率的なデバッグ / Effective debugging with profiler and AI assistant
ymotongpoo
1
340
デザインとエンジニアリングの架け橋を目指す OPTiMのデザインシステム「nucleus」の軌跡と広げ方
optim
0
120
SOTA競争から人間を超える画像認識へ
shinya7y
0
590
IoTLT@ストラタシスジャパン_20251021
norioikedo
0
140
生成AI時代のPythonセキュリティとガバナンス
abenben
0
140
「タコピーの原罪」から学ぶ間違った”支援” / the bad support of Takopii
piyonakajima
0
150
abema-trace-sampling-observability-cost-optimization
tetsuya28
0
190
Featured
See All Featured
The Power of CSS Pseudo Elements
geoffreycrofte
80
6k
Testing 201, or: Great Expectations
jmmastey
45
7.7k
Site-Speed That Sticks
csswizardry
13
930
Building Adaptive Systems
keathley
44
2.8k
Why Our Code Smells
bkeepers
PRO
340
57k
Connecting the Dots Between Site Speed, User Experience & Your Business [WebExpo 2025]
tammyeverts
10
620
Reflections from 52 weeks, 52 projects
jeffersonlam
354
21k
Visualization
eitanlees
149
16k
Designing for humans not robots
tammielis
254
26k
Agile that works and the tools we love
rasmusluckow
331
21k
BBQ
matthewcrist
89
9.9k
A Modern Web Designer's Workflow
chriscoyier
697
190k
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!