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
Retrospectiveを振り返ろう
nakasho
0
120
プロダクト開発と社内データ活用での、BI×AIの現在地 / Data_Findy
sansan_randd
0
410
個人でデジタル庁の デザインシステムをVue.jsで 作っている話
nishiharatsubasa
3
5.1k
オブザーバビリティが育むシステム理解と好奇心
maruloop
3
1.4k
CREが作る自己解決サイクルSlackワークフローに組み込んだAIによる社内ヘルプデスク改革 #cre_meetup
bengo4com
0
350
知覚とデザイン
rinchoku
1
600
GraphRAG グラフDBを使ったLLM生成(自作漫画DBを用いた具体例を用いて)
seaturt1e
1
150
MCP ✖️ Apps SDKを触ってみた
hisuzuya
0
390
re:Inventに行くまでにやっておきたいこと
nagisa53
0
500
東京大学「Agile-X」のFPGA AIデザインハッカソンを制したソニーのAI最適化
sony
0
110
現場の壁を乗り越えて、 「計装注入」が拓く オブザーバビリティ / Beyond the Field Barriers: Instrumentation Injection and the Future of Observability
aoto
PRO
1
640
From Natural Language to K8s Operations: The MCP Architecture and Practice of kubectl-ai
appleboy
0
260
Featured
See All Featured
[RailsConf 2023] Rails as a piece of cake
palkan
57
5.9k
GraphQLの誤解/rethinking-graphql
sonatard
73
11k
Music & Morning Musume
bryan
46
6.9k
Raft: Consensus for Rubyists
vanstee
140
7.2k
How to Think Like a Performance Engineer
csswizardry
27
2.1k
I Don’t Have Time: Getting Over the Fear to Launch Your Podcast
jcasabona
34
2.5k
The Myth of the Modular Monolith - Day 2 Keynote - Rails World 2024
eileencodes
26
3.1k
Mobile First: as difficult as doing things right
swwweet
225
10k
Building Adaptive Systems
keathley
44
2.8k
Leading Effective Engineering Teams in the AI Era
addyosmani
7
640
GitHub's CSS Performance
jonrohan
1032
470k
Testing 201, or: Great Expectations
jmmastey
45
7.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!