summary refs log tree commit diff
path: root/pkgs/applications/editors/vim/plugins/vim-plugin-names
blob: 45b25f5f4d0c6470302289563728a40ee4662a20 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
907th/vim-auto-save
aca/completion-tabnine
AckslD/nvim-neoclip.lua
AckslD/nvim-whichkey-setup.lua
ackyshake/Spacegray.vim
ackyshake/VimCompletesMe
ahmedkhalf/lsp-rooter.nvim
ahmedkhalf/project.nvim
airblade/vim-gitgutter
airblade/vim-rooter
ajmwagar/vim-deus
akinsho/bufferline.nvim
akinsho/toggleterm.nvim
aklt/plantuml-syntax
allendang/nvim-expand-expr
altercation/vim-colors-solarized
alvan/vim-closetag
alvarosevilla95/luatab.nvim
alx741/vim-hindent
alx741/vim-stylishask
AmeerTaweel/todo.nvim
amiorin/ctrlp-z
andersevenrud/cmp-tmux
andersevenrud/nordic.nvim
andrep/vimacs
andreshazard/vim-logreview
AndrewRadev/sideways.vim
AndrewRadev/splitjoin.vim
AndrewRadev/switch.vim
AndrewRadev/tagalong.vim
andsild/peskcolor.vim
andviro/flake8-vim
andweeb/presence.nvim
andymass/vim-matchup
andys8/vim-elm-syntax
antoinemadec/coc-fzf
antoinemadec/FixCursorHold.nvim
ap/vim-css-color
arcticicestudio/nord-vim@master
arkav/lualine-lsp-progress
arthurxavierx/vim-unicoder
artur-shaik/vim-javacomplete2
autozimu/LanguageClient-neovim
axelf4/vim-strip-trailing-whitespace
ayu-theme/ayu-vim
b0o/SchemaStore.nvim
b3nj5m1n/kommentary
bakpakin/fennel.vim
bazelbuild/vim-bazel
bbchung/clighter8
BeneCollyridam/futhark-vim
benizi/vim-automkdir
bhurlow/vim-parinfer
bitc/vim-hdevtools
bkad/camelcasemotion
bling/vim-bufferline
blueballs-theme/blueballs-neovim
blueyed/vim-diminactive
bogado/file-line
bohlender/vim-smt2
brennanfee/vim-gui-position
bronson/vim-trailing-whitespace
brooth/far.vim
buoto/gotests-vim
camspiers/lens.vim
camspiers/snap
carlitux/deoplete-ternjs
catppuccin/nvim as catppuccin-nvim
ccarpita/rtorrent-syntax-file
cespare/vim-toml
chaoren/vim-wordmotion
chentau/marks.nvim
chikatoike/concealedyank.vim
chikatoike/sourcemap.vim
chkno/vim-haskell-module-name
chr4/nginx.vim
chr4/sslsecure.vim
chrisbra/CheckAttach
chrisbra/csv.vim
chrisbra/NrrwRgn
chrisbra/Recover.vim
chrisbra/SudoEdit.vim
chrisbra/unicode.vim
chrisgeo/sparkup
chriskempson/base16-vim
ChristianChiarulli/nvcode-color-schemes.vim
christoomey/vim-sort-motion
christoomey/vim-tmux-navigator
ciaranm/inkpot
ckarnell/antonys-macro-repeater
clojure-vim/vim-jack-in
cloudhead/neovim-fuzzy
CoatiSoftware/vim-sourcetrail
cocopon/iceberg.vim
codota/tabnine-vim
cohama/lexima.vim
ConradIrwin/vim-bracketed-paste
crusoexia/vim-monokai
ctjhoa/spacevim
ctrlpvim/ctrlp.vim
dag/vim-fish
dag/vim2hs
dannyob/quickfixstatus
darfink/starsearch.vim
dart-lang/dart-vim-plugin
david-a-wheeler/vim-metamath
davidhalter/jedi-vim
dcharbon/vim-flatbuffers
dense-analysis/ale
deoplete-plugins/deoplete-clang
deoplete-plugins/deoplete-dictionary
deoplete-plugins/deoplete-go
deoplete-plugins/deoplete-jedi
deoplete-plugins/deoplete-lsp
deoplete-plugins/deoplete-zsh
derekelkins/agda-vim
derekwyatt/vim-scala
dhruvasagar/vim-prosession
dhruvasagar/vim-table-mode
digitaltoad/vim-pug
direnv/direnv.vim
dleonard0/pony-vim-syntax
dmix/elvish.vim
doki-theme/doki-theme-vim
dominikduda/vim_current_word
dpelle/vim-LanguageTool
dracula/vim as dracula-vim
drewtempelmeyer/palenight.vim
drmingdrmer/xptemplate
dstein64/nvim-scrollview
dstein64/vim-startuptime
dylanaraps/wal.vim
eagletmt/ghcmod-vim
eagletmt/neco-ghc
easymotion/vim-easymotion
echasnovski/mini.nvim
eddiebergman/nvim-treesitter-pyfold
eddyekofo94/gruvbox-flat.nvim
EdenEast/nightfox.nvim
editorconfig/editorconfig-vim
edkolev/tmuxline.vim
edluffy/hologram.nvim
edluffy/specs.nvim
edwinb/idris2-vim
ehamberg/vim-cute-python
eigenfoo/stan-vim
eikenb/acp
elixir-editors/vim-elixir
ellisonleao/glow.nvim
ellisonleao/gruvbox.nvim
elmcast/elm-vim
elzr/vim-json
embark-theme/vim as embark-vim
embear/vim-localvimrc
enomsg/vim-haskellConcealPlus
enricobacis/vim-airline-clock
ervandew/supertab
esneider/YUNOcommit.vim
euclidianAce/BetterLua.vim
euclio/vim-markdown-composer
f-person/git-blame.nvim
f3fora/cmp-spell
famiu/bufdelete.nvim
fannheyward/telescope-coc.nvim
farmergreg/vim-lastplace
fatih/vim-go
fcpg/vim-osc52
FelikZ/ctrlp-py-matcher
feline-nvim/feline.nvim
fenetikm/falcon
fhill2/floating.nvim
fhill2/telescope-ultisnips.nvim
fiatjaf/neuron.vim
filipdutescu/renamer.nvim
fisadev/vim-isort
flazz/vim-colorschemes
floobits/floobits-neovim
folke/lsp-colors.nvim
folke/lua-dev.nvim
folke/todo-comments.nvim
folke/tokyonight.nvim
folke/trouble.nvim
folke/twilight.nvim
folke/which-key.nvim
folke/zen-mode.nvim
FooSoft/vim-argwrap
freitass/todo.txt-vim
frigoeu/psc-ide-vim
fruit-in/brainfuck-vim
fruit-in/vim-nong-theme
fsharp/vim-fsharp
garbas/vim-snipmate
gbrlsnchs/telescope-lsp-handlers.nvim
gcmt/taboo.vim
gcmt/wildfire.vim
gelguy/wilder.nvim
gennaro-tedesco/nvim-jqx
gennaro-tedesco/nvim-peekup
gentoo/gentoo-syntax
GEverding/vim-hocon
gfanto/fzf-lsp.nvim
ggandor/lightspeed.nvim
gibiansky/vim-textobj-haskell
gioele/vim-autoswap
github/copilot.vim
gleam-lang/gleam.vim
glepnir/dashboard-nvim
glepnir/oceanic-material
glepnir/zephyr-nvim
glts/vim-textobj-comment
godlygeek/csapprox
godlygeek/tabular
GoldsteinE/compe-latex-symbols
google/vim-codefmt
google/vim-jsonnet
google/vim-maktaba
gorkunov/smartpairs.vim
gotcha/vimelette
gpanders/editorconfig.nvim
gregsexton/gitv
gruvbox-community/gruvbox as gruvbox-community
gu-fan/riv.vim
guns/vim-clojure-highlight
guns/vim-clojure-static
guns/vim-sexp
guns/xterm-color-table.vim
GustavoKatel/telescope-asynctasks.nvim
gyim/vim-boxdraw
haringsrob/nvim_context_vt
hashivim/vim-packer
hashivim/vim-terraform
hashivim/vim-vagrant
hauleth/sad.vim
haya14busa/incsearch-easymotion.vim
haya14busa/incsearch.vim
haya14busa/is.vim
haya14busa/vim-asterisk
haya14busa/vim-poweryank
heavenshell/vim-jsdoc
hecal3/vim-leader-guide
henrik/vim-indexed-search
HerringtonDarkholme/yats.vim
honza/vim-snippets
hotwatermorning/auto-git-diff
hrsh7th/cmp-buffer
hrsh7th/cmp-calc
hrsh7th/cmp-cmdline
hrsh7th/cmp-emoji
hrsh7th/cmp-nvim-lsp
hrsh7th/cmp-nvim-lsp-document-symbol
hrsh7th/cmp-nvim-lua
hrsh7th/cmp-omni
hrsh7th/cmp-path
hrsh7th/cmp-vsnip
hrsh7th/nvim-cmp
hrsh7th/nvim-compe
hrsh7th/vim-vsnip
hrsh7th/vim-vsnip-integ
hsanson/vim-android
hsitz/VimOrganizer
https://git.sr.ht/~whynothugo/lsp_lines.nvim
hura/vim-asymptote
iamcco/coc-spell-checker
iamcco/markdown-preview.nvim
ianks/vim-tsx
idanarye/vim-merginal
idris-hackers/idris-vim
Inazuma110/deoplete-greek
inkarkat/vim-ReplaceWithRegister
inkarkat/vim-ReplaceWithSameIndentRegister
inkarkat/vim-SyntaxRange
int3/vim-extradite
Iron-E/nvim-highlite
ishan9299/nvim-solarized-lua
itchyny/calendar.vim
itchyny/lightline.vim
itchyny/thumbnail.vim
itchyny/vim-cursorword
itchyny/vim-gitbranch
itspriddle/vim-shellcheck
ivalkeen/vim-simpledb
ivanov/vim-ipython
j-hui/fidget.nvim
jackguo380/vim-lsp-cxx-highlight
jacoborus/tender.vim
jakwings/vim-pony
jamessan/vim-gnupg
jaredgorski/SpaceCamp
jasonccox/vim-wayland-clipboard
jaxbot/semantic-highlight.vim
JazzCore/ctrlp-cmatcher
jbyuki/venn.nvim
jc-doyle/cmp-pandoc-references
jceb/vim-hier
jceb/vim-orgmode
jeetsukumaran/vim-buffergator
jeetsukumaran/vim-indentwise
jeffkreeftmeijer/neovim-sensible
jeffkreeftmeijer/vim-numbertoggle
jelera/vim-javascript-syntax
jgdavey/tslime.vim
jghauser/mkdir.nvim@main
jhradilek/vim-docbk
jhradilek/vim-snippets as vim-docbk-snippets
jiangmiao/auto-pairs
jistr/vim-nerdtree-tabs
jjo/vim-cue
jlanzarotta/bufexplorer
jlesquembre/nterm.nvim
jnurmine/zenburn
jonbri/vim-colorstepper
jonsmithers/vim-html-template-literals
joonty/vim-xdebug
joosepalviste/nvim-ts-context-commentstring
jordwalke/vim-reasonml
josa42/coc-lua
josa42/vim-lightline-coc
jose-elias-alvarez/minsnip.nvim
jose-elias-alvarez/null-ls.nvim
jose-elias-alvarez/nvim-lsp-ts-utils
joshdick/onedark.vim
jpalardy/vim-slime
jparise/vim-graphql
jparise/vim-phabricator
jreybert/vimagit
jsfaint/gen_tags.vim
JuliaEditorSupport/deoplete-julia
JuliaEditorSupport/julia-vim
Julian/lean.nvim
Julian/vim-textobj-variable-segment
juliosueiras/vim-terraform-completion
junegunn/fzf.vim
junegunn/goyo.vim
junegunn/gv.vim
junegunn/limelight.vim
junegunn/seoul256.vim
junegunn/vader.vim
junegunn/vim-after-object
junegunn/vim-easy-align
junegunn/vim-emoji
junegunn/vim-github-dashboard
junegunn/vim-peekaboo
junegunn/vim-plug
junegunn/vim-slash
justincampbell/vim-eighties
justinj/vim-pico8-syntax
justinmk/vim-dirvish
justinmk/vim-sneak
jvirtanen/vim-hcl
jvoorhis/coq.vim
KabbAmine/vCoolor.vim
KabbAmine/zeavim.vim
kalbasit/vim-colemak
kana/vim-niceblock
kana/vim-operator-replace
kana/vim-operator-user
kana/vim-tabpagecd
kana/vim-textobj-entire
kana/vim-textobj-function
kana/vim-textobj-user
karb94/neoscroll.nvim
kassio/neoterm
kbenzie/vim-spirv
kchmck/vim-coffee-script
kdheepak/cmp-latex-symbols
kdheepak/lazygit.nvim
kdheepak/tabline.nvim
KeitaNakamura/neodark.vim
KeitaNakamura/tex-conceal.vim
keith/investigate.vim
keith/rspec.vim
keith/swift.vim
kevinhwang91/nvim-bqf
kevinhwang91/nvim-hlslens
kevinhwang91/rnvimr
kien/rainbow_parentheses.vim
knubie/vim-kitty-navigator
konfekt/fastfold
Konfekt/vim-alias
konfekt/vim-DetectSpellLang
kosayoda/nvim-lightbulb
kovisoft/slimv
kristijanhusak/defx-git
kristijanhusak/defx-icons
kristijanhusak/deoplete-phpactor
kristijanhusak/vim-carbon-now-sh
kristijanhusak/vim-dadbod-completion
kristijanhusak/vim-dadbod-ui
kristijanhusak/vim-dirvish-git
kristijanhusak/vim-hybrid-material
kshenoy/vim-signature
kyazdani42/nvim-tree.lua
kyazdani42/nvim-web-devicons
l3mon4d3/luasnip
lambdalisue/fern.vim
lambdalisue/gina.vim
lambdalisue/suda.vim
lambdalisue/vim-gista
lambdalisue/vim-manpager
lambdalisue/vim-pager
latex-box-team/latex-box
ldelossa/litee-calltree.nvim
ldelossa/litee-filetree.nvim
ldelossa/litee-symboltree.nvim
ldelossa/litee.nvim
leafgarland/typescript-vim
leanprover/lean.vim
ledger/vim-ledger
lepture/vim-jinja
lervag/vimtex
lewis6991/gitsigns.nvim
lewis6991/impatient.nvim
lf-lang/lingua-franca.vim
lfe-support/vim-lfe
lfilho/cosco.vim
lifepillar/pgsql.vim
lifepillar/vim-gruvbox8
lifepillar/vim-mucomplete
lighttiger2505/deoplete-vim-lsp
lilydjwg/colorizer
lilydjwg/fcitx.vim@fcitx5
liuchengxu/graphviz.vim
liuchengxu/vim-clap
liuchengxu/vim-which-key
liuchengxu/vista.vim
LnL7/vim-nix
lotabout/skim.vim
luan/vim-concourse
LucHermitte/lh-brackets
LucHermitte/lh-vim-lib
ludovicchabant/vim-gutentags
ludovicchabant/vim-lawrencium
lukas-reineke/cmp-under-comparator
lukas-reineke/indent-blankline.nvim
lukaszkorecki/workflowish
lumiliet/vim-twig
luochen1990/rainbow
luukvbaal/stabilize.nvim
lyokha/vim-xkbswitch
m-pilia/vim-ccls
machakann/vim-highlightedyank
machakann/vim-sandwich
machakann/vim-swap
maksimr/vim-jsbeautify
MarcWeber/vim-addon-actions
MarcWeber/vim-addon-async
MarcWeber/vim-addon-background-cmd
MarcWeber/vim-addon-commenting
MarcWeber/vim-addon-completion
MarcWeber/vim-addon-errorformats
MarcWeber/vim-addon-goto-thing-at-cursor
MarcWeber/vim-addon-local-vimrc
MarcWeber/vim-addon-manager
MarcWeber/vim-addon-mru
MarcWeber/vim-addon-mw-utils
MarcWeber/vim-addon-nix
MarcWeber/vim-addon-other
MarcWeber/vim-addon-php-manual
MarcWeber/vim-addon-signs
MarcWeber/vim-addon-sql
MarcWeber/vim-addon-syntax-checker
MarcWeber/vim-addon-toggle-buffer
MarcWeber/vim-addon-xdebug
marko-cerovac/material.nvim
markonm/traces.vim
martinda/Jenkinsfile-vim-syntax
MattesGroeger/vim-bookmarks
mattn/calendar-vim as mattn-calendar-vim
mattn/emmet-vim
mattn/vim-gist
mattn/webapi-vim
matze/vim-move
max397574/better-escape.nvim
maximbaz/lightline-ale
maxjacobson/vim-fzf-coauthorship
MaxMEllon/vim-jsx-pretty
mbbill/undotree
mboughaba/i3config.vim
mcchrish/nnn.vim
megaannum/forms
megaannum/self
mengelbrecht/lightline-bufferline
metakirby5/codi.vim
metalelf0/jellybeans-nvim
mfukar/robotframework-vim
mfussenegger/nvim-dap
mfussenegger/nvim-jdtls
mfussenegger/nvim-lint
mg979/vim-visual-multi
mg979/vim-xtabline
mhartington/formatter.nvim
mhartington/oceanic-next
mhinz/vim-crates
mhinz/vim-grepper
mhinz/vim-janah
mhinz/vim-sayonara@7e774f58c5865d9c10d40396850b35ab95af17c5
mhinz/vim-signify
mhinz/vim-startify
michaeljsmith/vim-indent-object
mileszs/ack.vim
milkypostman/vim-togglelist
mindriot101/vim-yapf
mk12/vim-lean
mkasa/lushtags
mlr-msft/vim-loves-dafny
moll/vim-bbye
mopp/sky-color-clock.vim
morhetz/gruvbox
motus/pig.vim
mpickering/hlint-refactor-vim
ms-jpq/chadtree@chad
ms-jpq/coq_nvim
mtikekar/vim-bsv
MunifTanjim/nui.nvim@main
mustache/vim-mustache-handlebars
mzlogin/vim-markdown-toc
mzlogin/vim-smali
nacro90/numb.nvim
nanotech/jellybeans.vim
natebosch/vim-lsc
nathanaelkane/vim-indent-guides
nathangrigg/vim-beancount
nathanmsmith/nvim-ale-diagnostic
navarasu/onedark.nvim
navicore/vissort.vim
nbouscal/vim-stylish-haskell
ncm2/float-preview.nvim
ncm2/ncm2
ncm2/ncm2-bufword
ncm2/ncm2-cssomni
ncm2/ncm2-github
ncm2/ncm2-html-subscope
ncm2/ncm2-jedi
ncm2/ncm2-markdown-subscope
ncm2/ncm2-neoinclude
ncm2/ncm2-neosnippet
ncm2/ncm2-path
ncm2/ncm2-syntax
ncm2/ncm2-tagprefix
ncm2/ncm2-tmux
ncm2/ncm2-ultisnips
ncm2/ncm2-vim
ndmitchell/ghcid
neoclide/coc-denite
neoclide/coc-neco
neoclide/coc.nvim@release
neoclide/denite-extra
neoclide/denite-git
neoclide/jsonc.vim
neoclide/vim-easygit
neomake/neomake
neovim/nvim-lspconfig
neovim/nvimdev.nvim
neovimhaskell/haskell-vim
neovimhaskell/nvim-hs.vim
neutaaaaan/iosvkem
nfnty/vim-nftables
nicoe/deoplete-khard
nishigori/increment-activator
nixprime/cpsm
NLKNguyen/papercolor-theme
noahfrederick/vim-noctu
noc7c9/vim-iced-coffee-script
norcalli/nvim-colorizer.lua
norcalli/nvim-terminal.lua
norcalli/snippets.nvim
NTBBloodbath/galaxyline.nvim
NTBBloodbath/rest.nvim
ntpeters/vim-better-whitespace
numirias/semshi
numtostr/comment.nvim
numToStr/FTerm.nvim
numToStr/Navigator.nvim
nvie/vim-flake8
nvim-lua/completion-nvim
nvim-lua/diagnostic-nvim
nvim-lua/lsp-status.nvim
nvim-lua/lsp_extensions.nvim
nvim-lua/plenary.nvim
nvim-lua/popup.nvim
nvim-lualine/lualine.nvim
nvim-neorg/neorg
nvim-orgmode/orgmode
nvim-pack/nvim-spectre
nvim-telescope/telescope-cheat.nvim
nvim-telescope/telescope-dap.nvim
nvim-telescope/telescope-file-browser.nvim
nvim-telescope/telescope-frecency.nvim
nvim-telescope/telescope-fzf-native.nvim
nvim-telescope/telescope-fzf-writer.nvim
nvim-telescope/telescope-fzy-native.nvim
nvim-telescope/telescope-github.nvim
nvim-telescope/telescope-project.nvim
nvim-telescope/telescope-symbols.nvim
nvim-telescope/telescope-z.nvim
nvim-telescope/telescope.nvim
nvim-treesitter/completion-treesitter
nvim-treesitter/nvim-treesitter
nvim-treesitter/nvim-treesitter-refactor
nvim-treesitter/nvim-treesitter-textobjects
nvim-treesitter/playground
oberblastmeister/neuron.nvim
oberblastmeister/termwrapper.nvim
ocaml/vim-ocaml
octol/vim-cpp-enhanced-highlight
ojroques/nvim-bufdel
ojroques/vim-oscyank
Olical/aniseed
Olical/conjure
olimorris/onedarkpro.nvim
onsails/diaglist.nvim
onsails/lspkind-nvim
OrangeT/vim-csharp
osyo-manga/shabadou.vim
osyo-manga/vim-anzu
osyo-manga/vim-over
osyo-manga/vim-textobj-multiblock
osyo-manga/vim-watchdogs
overcache/NeoSolarized
p00f/nvim-ts-rainbow
pangloss/vim-javascript
pantharshit00/vim-prisma
parsonsmatt/intero-neovim
PaterJason/cmp-conjure
pearofducks/ansible-vim
peitalin/vim-jsx-typescript
peterbjorgensen/sved
peterhoeg/vim-qml
PeterRincker/vim-argumentative
petRUShka/vim-opencl
phaazon/hop.nvim
phanviet/vim-monokai-pro
Pocco81/TrueZen.nvim
ponko2/deoplete-fish
posva/vim-vue
powerman/vim-plugin-AnsiEsc
PProvost/vim-ps1
prabirshrestha/async.vim
prabirshrestha/asyncomplete-lsp.vim
prabirshrestha/asyncomplete.vim
prabirshrestha/vim-lsp
preservim/nerdcommenter
preservim/nerdtree
preservim/tagbar
preservim/vim-markdown
preservim/vim-pencil
preservim/vim-wordy
preservim/vimux
prettier/vim-prettier
projekt0n/circles.nvim
psliwka/vim-smoothie
ptzz/lf.vim
puremourning/vimspector
purescript-contrib/purescript-vim
pwntester/octo.nvim
python-mode/python-mode
qnighy/lalrpop.vim
qpkorr/vim-bufkill
quangnguyen30192/cmp-nvim-ultisnips
Quramy/tsuquyomi
racer-rust/vim-racer
radenling/vim-dispatch-neovim
rafamadriz/friendly-snippets
rafamadriz/neon
rafaqz/ranger.vim
rafi/awesome-vim-colorschemes
raghur/fruzzy
raghur/vim-ghost
Raimondi/delimitMate
rakr/vim-one
ray-x/aurora
ray-x/cmp-treesitter
ray-x/lsp_signature.nvim
rbgrouleff/bclose.vim
rbong/vim-flog
rcarriga/nvim-dap-ui
rcarriga/nvim-notify
rcarriga/vim-ultest
rebelot/kanagawa.nvim
rhysd/clever-f.vim
rhysd/committia.vim
rhysd/conflict-marker.vim
rhysd/devdocs.vim
rhysd/git-messenger.vim
rhysd/vim-clang-format
rhysd/vim-grammarous
rhysd/vim-operator-surround
RishabhRD/nvim-lsputils
RishabhRD/popfix
rktjmp/fwatch.nvim
rktjmp/lush.nvim
rmagatti/auto-session
rmagatti/goto-preview
RobertAudi/securemodelines
rodjek/vim-puppet
romainl/vim-cool
romainl/vim-qf
romainl/vim-qlist
roman/golden-ratio
romgrk/barbar.nvim
romgrk/nvim-treesitter-context
ron-rs/ron.vim
ron89/thesaurus_query.vim
roxma/nvim-cm-racer
roxma/nvim-completion-manager
roxma/nvim-yarp
roxma/vim-tmux-clipboard
RRethy/nvim-base16
RRethy/vim-hexokinase
RRethy/vim-illuminate
rstacruz/vim-closer
ruanyl/vim-gh-line
ruifm/gitlinker.nvim
rust-lang/rust.vim
ryanoasis/vim-devicons
ryvnf/readline.vim
saadparwaiz1/cmp_luasnip
saecki/crates.nvim
sainnhe/edge
sainnhe/gruvbox-material
sainnhe/sonokai
sakhnik/nvim-gdb
saltstack/salt-vim
samoshkin/vim-mergetool
sbdchd/neoformat
sblumentritt/bitbake.vim
scalameta/nvim-metals
sdiehl/vim-ormolu
sebastianmarkow/deoplete-rust
SevereOverfl0w/deoplete-github
Shatur/neovim-ayu
shaunsingh/moonlight.nvim@pure-lua
shaunsingh/nord.nvim
sheerun/vim-polyglot
shinchu/lightline-gruvbox.vim
Shougo/context_filetype.vim
Shougo/defx.nvim
Shougo/denite.nvim
Shougo/deol.nvim
Shougo/deoplete.nvim
Shougo/echodoc.vim
Shougo/neco-syntax
Shougo/neco-vim
Shougo/neocomplete.vim
Shougo/neoinclude.vim
Shougo/neomru.vim
Shougo/neosnippet-snippets
Shougo/neosnippet.vim
Shougo/neoyank.vim
Shougo/tabpagebuffer.vim
Shougo/unite.vim
Shougo/vimfiler.vim
Shougo/vimproc.vim
Shougo/vimshell.vim
shumphrey/fugitive-gitlab.vim
sickill/vim-pasta
SidOfc/mkdx
simnalamburt/vim-mundo
simrat39/rust-tools.nvim
simrat39/symbols-outline.nvim
sindrets/diffview.nvim
sindrets/winshift.nvim
SirVer/ultisnips
sjl/gundo.vim
sjl/splice.vim
sk1418/last256
skywind3000/asyncrun.vim
skywind3000/asynctasks.vim
slashmili/alchemist.vim
smiteshp/nvim-gps
sodapopcan/vim-twiggy
solarnz/arcanist.vim
sonph/onehalf
sotte/presenting.vim
srcery-colors/srcery-vim
steelsojka/completion-buffers
steelsojka/pears.nvim
stefandtw/quickfix-reflector.vim
stephpy/vim-yaml
stevearc/aerial.nvim
stevearc/dressing.nvim
stsewd/fzf-checkout.vim
sudormrfbin/cheatsheet.nvim
sunaku/vim-dasht
sunjon/Shade.nvim
svermeulen/vim-subversive
symphorien/vim-nixhash
t9md/vim-choosewin
t9md/vim-smalls
TaDaa/vimade
takac/vim-hardtime
tamago324/compe-zsh
tamago324/lir.nvim
tami5/compe-conjure
tami5/lispdocs.nvim
tami5/lspsaga.nvim
tami5/sqlite.lua
tbastos/vim-lua
tbodt/deoplete-tabnine
ternjs/tern_for_vim
terrortylor/nvim-comment
terryma/vim-expand-region
terryma/vim-multiple-cursors
tex/vimpreviewpandoc
Th3Whit3Wolf/one-nvim
theHamsta/nvim-dap-virtual-text
ThePrimeagen/git-worktree.nvim
ThePrimeagen/harpoon
theprimeagen/refactoring.nvim
ThePrimeagen/vim-apm
thinca/vim-ft-diff_fold
thinca/vim-prettyprint
thinca/vim-quickrun
thinca/vim-scouter
thinca/vim-themis
thinca/vim-visualstar
thirtythreeforty/lessspace.vim
thosakwe/vim-flutter
tiagofumo/vim-nerdtree-syntax-highlight
tikhomirov/vim-glsl
TimUntersberger/neogit
tjdevries/colorbuddy.nvim
tjdevries/nlua.nvim
tjdevries/train.nvim
tmhedberg/SimpylFold
tmsvg/pear-tree
tmux-plugins/vim-tmux
tmux-plugins/vim-tmux-focus-events
tom-anders/telescope-vim-bookmarks.nvim
tomasiser/vim-code-dark
tomasr/molokai
tomlion/vim-solidity
tommcdo/vim-exchange
tommcdo/vim-fubitive
tommcdo/vim-lion
tommcdo/vim-ninja-feet
tomtom/tcomment_vim
tomtom/tlib_vim
tools-life/taskwiki
towolf/vim-helm
tpope/vim-abolish
tpope/vim-capslock
tpope/vim-commentary
tpope/vim-dadbod
tpope/vim-dispatch
tpope/vim-endwise
tpope/vim-eunuch
tpope/vim-fireplace
tpope/vim-flagship
tpope/vim-fugitive
tpope/vim-git
tpope/vim-liquid
tpope/vim-obsession
tpope/vim-pathogen
tpope/vim-projectionist
tpope/vim-ragtag
tpope/vim-rails
tpope/vim-repeat
tpope/vim-rhubarb
tpope/vim-rsi
tpope/vim-salve
tpope/vim-scriptease
tpope/vim-sensible
tpope/vim-sexp-mappings-for-regular-people
tpope/vim-sleuth
tpope/vim-speeddating
tpope/vim-surround
tpope/vim-tbone
tpope/vim-unimpaired
tpope/vim-vinegar
travitch/hasksyn
tremor-rs/tremor-vim
triglav/vim-visual-increment
troydm/zoomwintab.vim
turbio/bracey.vim
tversteeg/registers.nvim
tweekmonster/wstrip.vim
twerth/ir_black
twinside/vim-haskellconceal
Twinside/vim-hoogle
tyru/caw.vim
tyru/open-browser-github.vim
tyru/open-browser.vim
tzachar/cmp-tabnine
tzachar/compe-tabnine
uarun/vim-protobuf
udalov/kotlin-vim
ujihisa/neco-look
unblevable/quick-scope
ur4ltz/surround.nvim
urbit/hoon.vim
Valloric/MatchTagAlways
Valodim/deoplete-notmuch
vhda/verilog_systemverilog.vim
vifm/vifm.vim
vigoux/LanguageTool.nvim
vijaymarupudi/nvim-fzf
vijaymarupudi/nvim-fzf-commands
vim-airline/vim-airline
vim-airline/vim-airline-themes
vim-autoformat/vim-autoformat
vim-erlang/vim-erlang-compiler
vim-erlang/vim-erlang-omnicomplete
vim-erlang/vim-erlang-runtime
vim-erlang/vim-erlang-tags
vim-pandoc/vim-pandoc
vim-pandoc/vim-pandoc-after
vim-pandoc/vim-pandoc-syntax
vim-python/python-syntax
vim-ruby/vim-ruby
vim-scripts/a.vim
vim-scripts/align
vim-scripts/argtextobj.vim
vim-scripts/autoload_cscope.vim
vim-scripts/bats.vim
vim-scripts/BufOnly.vim
vim-scripts/changeColorScheme.vim
vim-scripts/Colour-Sampler-Pack
vim-scripts/DoxygenToolkit.vim
vim-scripts/emodeline
vim-scripts/gitignore.vim
vim-scripts/Improved-AnsiEsc
vim-scripts/jdaddy.vim
vim-scripts/matchit.zip
vim-scripts/mayansmoke
vim-scripts/PreserveNoEOL
vim-scripts/prev_indent
vim-scripts/random.vim
vim-scripts/rcshell.vim
vim-scripts/Rename
vim-scripts/ReplaceWithRegister
vim-scripts/ShowMultiBase
vim-scripts/tabmerge
vim-scripts/taglist.vim
vim-scripts/timestamp.vim
vim-scripts/utl.vim
vim-scripts/vis
vim-scripts/wombat256.vim
vim-scripts/YankRing.vim
vim-syntastic/syntastic
vim-test/vim-test
vim-utils/vim-husk
Vimjas/vim-python-pep8-indent
vimlab/split-term.vim
vimoutliner/vimoutliner
vimpostor/vim-tpipeline
vimsence/vimsence
vimwiki/vimwiki
vito-c/jq.vim
vmchale/ats-vim
vmchale/dhall-vim
vn-ki/coc-clap
voldikss/vim-floaterm
vuki656/package-info.nvim
VundleVim/Vundle.vim
w0ng/vim-hybrid
wakatime/vim-wakatime
wannesm/wmgraphviz.vim
wbthomason/packer.nvim
weilbith/nvim-code-action-menu
wellle/targets.vim
wellle/tmux-complete.vim
wesQ3/vim-windowswap
wfxr/minimap.vim
whonore/Coqtail
will133/vim-dirdiff
wincent/command-t
wincent/ferret
wincent/terminus
windwp/nvim-autopairs
windwp/nvim-ts-autotag
winston0410/cmd-parser.nvim
winston0410/range-highlight.nvim
wlangstroth/vim-racket
wsdjeg/vim-fetch
xavierd/clang_complete
xolox/vim-easytags
xolox/vim-misc
xuhdev/vim-latex-live-preview
Xuyuanp/nerdtree-git-plugin
Xuyuanp/scrollbar.nvim
yamatsum/nvim-cursorline
yamatsum/nvim-nonicons
ycm-core/YouCompleteMe
yegappan/mru
Yggdroot/hiPairs
Yggdroot/indentLine
Yggdroot/LeaderF
Yilin-Yang/vim-markbar
yssl/QFEnter
yuki-yano/ncm2-dictionary
yunlingz/ci_dark
zah/nim.vim
zhou13/vim-easyescape
ziglang/zig.vim