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
650
devdocs - offline language programming support
wikimatze
0
420
Flog, a New Git Branch extension
wikimatze
0
650
Cmus
wikimatze
0
76
cmus and vim
wikimatze
0
900
vimfest-2016-opening-keynote
wikimatze
0
71
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
AIエージェントによるエンタープライズ向けスライド検索!
shibuiwilliam
2
510
バフェットコード株式会社 開発チームカルチャーデック
shoe116
1
100
Lazy Constant - finalフィールドの遅延初期化
skrb
0
220
自己的售票系統自己做!
eddie
0
460
What's the recommended Flutter architecture
aakira
3
1.8k
今、MySQLのバックアップを作り直すとしたら何がどう良いのかを考える旅
yoku0825
2
390
Moto: Latent Motion Token as the Bridging Language for Learning Robot Manipulation from Videos
peisuke
0
150
旧から新へ: 大規模ウェブクローラの Perl から Go への移行 / YAPC::Fukuoka 2025
motemen
3
920
アジャイル社内普及ご近所さんマップを作ろう / Let's create an agile neighborhood map
psj59129
1
130
ABEMAのCM配信を支えるスケーラブルな分散カウンタの実装
hono0130
3
510
個人から巡るAI疲れと組織としてできること - AI疲れをふっとばせ。エンジニアのAI疲れ治療法 ショートセッション -
kikuchikakeru
1
310
AWS オブザーバビリティサービスアップデート
o11yfes2023
0
120
Featured
See All Featured
Art, The Web, and Tiny UX
lynnandtonic
303
21k
Side Projects
sachag
455
43k
Six Lessons from altMBA
skipperchong
29
4.1k
Rebuilding a faster, lazier Slack
samanthasiow
84
9.3k
[Rails World 2023 - Day 1 Closing Keynote] - The Magic of Rails
eileencodes
37
2.6k
We Have a Design System, Now What?
morganepeng
54
7.9k
How to train your dragon (web standard)
notwaldorf
97
6.4k
Measuring & Analyzing Core Web Vitals
bluesmoon
9
670
For a Future-Friendly Web
brad_frost
180
10k
StorybookのUI Testing Handbookを読んだ
zakiyama
31
6.3k
How to Ace a Technical Interview
jacobian
280
24k
The Cult of Friendly URLs
andyhume
79
6.7k
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!