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
460
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
600
devdocs - offline language programming support
wikimatze
0
380
Flog, a New Git Branch extension
wikimatze
0
510
Cmus
wikimatze
0
68
cmus and vim
wikimatze
0
770
vimfest-2016-opening-keynote
wikimatze
0
57
Get productive with vimtex for LaTeX
wikimatze
0
620
Weechat - another IRC client
wikimatze
0
1k
Synchronize gitter and IRC
wikimatze
0
150
Other Decks in Technology
See All in Technology
Figma Dev Modeで進化するデザインとエンジニアリングの協働 / figma-with-engineering
cyberagentdevelopers
PRO
1
430
国土交通省 データコンペ参加者向け勉強会
takehikohashimoto
0
110
pandasはPolarsに性能面で追いつき追い越せるのか
vaaaaanquish
4
4.6k
バクラクにおける可観測性向上の取り組み
yuu26
3
420
カメラを用いた店内計測におけるオプトインの仕組みの実現 / ai-optin-camera
cyberagentdevelopers
PRO
1
120
CyberAgent 生成AI Deep Dive with Amazon Web Services / genai-aws
cyberagentdevelopers
PRO
1
480
コンテンツを支える 若手ゲームクリエイターの アートディレクションの事例紹介 / cagamefi-game
cyberagentdevelopers
PRO
1
130
신뢰할 수 있는 AI 검색 엔진을 만들기 위한 Liner의 여정
huffon
0
360
ネット広告に未来はあるか?「3rd Party Cookie廃止とPrivacy Sandboxの効果検証の裏側」 / third-party-cookie-privacy
cyberagentdevelopers
PRO
1
130
君は隠しイベントを見つけれるか?
mujyun
0
300
生成AIとAWS CDKで実現! 自社ブログレビューの効率化
ymae
2
330
リンクアンドモチベーション ソフトウェアエンジニア向け紹介資料 / Introduction to Link and Motivation for Software Engineers
lmi
4
290k
Featured
See All Featured
How to train your dragon (web standard)
notwaldorf
88
5.7k
The Art of Delivering Value - GDevCon NA Keynote
reverentgeek
7
150
Fontdeck: Realign not Redesign
paulrobertlloyd
81
5.2k
個人開発の失敗を避けるイケてる考え方 / tips for indie hackers
panda_program
92
16k
Adopting Sorbet at Scale
ufuk
73
9k
Writing Fast Ruby
sferik
626
61k
No one is an island. Learnings from fostering a developers community.
thoeni
19
3k
Dealing with People You Can't Stand - Big Design 2015
cassininazir
364
22k
Easily Structure & Communicate Ideas using Wireframe
afnizarnur
191
16k
Evolution of real-time – Irina Nazarova, EuRuKo, 2024
irinanazarova
4
290
Fireside Chat
paigeccino
32
3k
StorybookのUI Testing Handbookを読んだ
zakiyama
26
5.2k
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!