-
-
Notifications
You must be signed in to change notification settings - Fork 18.7k
Expand file tree
/
Copy pathvim-plugin-names
More file actions
1848 lines (1848 loc) · 82.6 KB
/
vim-plugin-names
File metadata and controls
1848 lines (1848 loc) · 82.6 KB
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
996
997
998
999
1000
repo,branch,alias
https://github.com/euclidianAce/BetterLua.vim/,,
https://github.com/vim-scripts/BufOnly.vim/,,
https://github.com/jackMort/ChatGPT.nvim/,,
https://github.com/chrisbra/CheckAttach/,,
https://github.com/vim-scripts/Colour-Sampler-Pack/,,
https://github.com/CopilotC-Nvim/CopilotChat.nvim/,,
https://github.com/whonore/Coqtail/,,
https://github.com/vim-scripts/DoxygenToolkit.vim/,,
https://github.com/numToStr/FTerm.nvim/,,
https://github.com/antoinemadec/FixCursorHold.nvim/,,
https://github.com/Aaronik/GPTModels.nvim/,,
https://github.com/vim-scripts/Improved-AnsiEsc/,,
https://github.com/ionide/Ionide-vim/,,
https://github.com/martinda/Jenkinsfile-vim-syntax/,,
https://github.com/vigoux/LanguageTool.nvim/,,
https://github.com/LazyVim/LazyVim/,,
https://github.com/Yggdroot/LeaderF/,,
https://github.com/goropikari/LibDeflate.nvim/,,
https://github.com/molleweide/LuaSnip-snippets.nvim/,,
https://github.com/Valloric/MatchTagAlways/,,
https://github.com/numToStr/Navigator.nvim/,,
https://github.com/lanx-x/NeoSolarized/,,
https://github.com/GCBallesteros/NotebookNavigator.nvim/,,
https://github.com/chrisbra/NrrwRgn/,,
https://github.com/Eutrius/Otree.nvim/,,
https://github.com/vim-scripts/PreserveNoEOL/,,
https://github.com/henriklovhaug/Preview.nvim/,,
https://github.com/yssl/QFEnter/,,
https://github.com/chrisbra/Recover.vim/,,
https://github.com/vim-scripts/Rename/,,
https://github.com/vim-scripts/ReplaceWithRegister/,,
https://github.com/b0o/SchemaStore.nvim/,,
https://github.com/sunjon/Shade.nvim/,,
https://github.com/vim-scripts/ShowMultiBase/,,
https://github.com/tmhedberg/SimpylFold/,,
https://github.com/vim-scripts/SmartCase/,,
https://github.com/jaredgorski/SpaceCamp/,,
https://github.com/chrisbra/SudoEdit.vim/,,
https://github.com/vim-scripts/VimCompletesMe/,,
https://github.com/hsitz/VimOrganizer/,,
https://github.com/VundleVim/Vundle.vim/,,
https://github.com/esneider/YUNOcommit.vim/,,
https://github.com/svban/YankAssassin.vim/,,
https://github.com/vim-scripts/YankRing.vim/,,
https://github.com/ycm-core/YouCompleteMe/,,
https://github.com/vim-scripts/a.vim/,,
https://github.com/Alligator/accent.vim/,,
https://github.com/mileszs/ack.vim/,,
https://github.com/eikenb/acp/,,
https://github.com/aznhe21/actions-preview.nvim/,,
https://github.com/mrtnvgr/actions.nvim/,,
https://github.com/aaronhallaert/advanced-git-search.nvim/,,
https://github.com/Mofiqul/adwaita.nvim/,,
https://github.com/stevearc/aerial.nvim/,,
https://github.com/Numkil/ag.nvim/,,
https://github.com/derekelkins/agda-vim/,,
https://github.com/emmanueltouzery/agitator.nvim/,,
https://github.com/aduros/ai.vim/,,
https://github.com/joshuavial/aider.nvim/,,
https://github.com/dchinmay2/alabaster.nvim/,,
https://github.com/slashmili/alchemist.vim/,,
https://github.com/dense-analysis/ale/,,
https://github.com/vim-scripts/align/,,
https://github.com/Vonr/align.nvim/,,
https://github.com/goolord/alpha-nvim/,,
https://github.com/sourcegraph/amp.nvim/,,
https://github.com/anuvyklack/animation.nvim/,,
https://github.com/Olical/aniseed/,,
https://github.com/pearofducks/ansible-vim/,,
https://github.com/ckarnell/antonys-macro-repeater/,,
https://github.com/solarnz/arcanist.vim/,,
https://github.com/vim-scripts/argtextobj.vim/,,
https://github.com/otavioschwanck/arrow.nvim/,,
https://github.com/arsham/arshlib.nvim/,,
https://github.com/comfysage/artio.nvim/,,
https://github.com/AstroNvim/astrocore/,,
https://github.com/AstroNvim/astrolsp/,,
https://github.com/AstroNvim/astrotheme/,,
https://github.com/AstroNvim/astroui/,,
https://github.com/lewis6991/async.nvim/,,
https://github.com/prabirshrestha/async.vim/,,
https://github.com/prabirshrestha/asyncomplete-buffer.vim/,,
https://github.com/prabirshrestha/asyncomplete-file.vim/,,
https://github.com/prabirshrestha/asyncomplete-lsp.vim/,,
https://github.com/prabirshrestha/asyncomplete-omni.vim/,,
https://github.com/prabirshrestha/asyncomplete-tags.vim/,,
https://github.com/prabirshrestha/asyncomplete-ultisnips.vim/,,
https://github.com/prabirshrestha/asyncomplete.vim/,,
https://github.com/skywind3000/asyncrun.vim/,,
https://github.com/skywind3000/asynctasks.vim/,,
https://github.com/vmchale/ats-vim/,,
https://github.com/augmentcode/augment.vim/,prerelease,
https://github.com/ray-x/aurora/,,
https://github.com/Jay-Madden/auto-fix-return.nvim/,,
https://github.com/hotwatermorning/auto-git-diff/,,
https://github.com/asiryk/auto-hlsearch.nvim/,,
https://github.com/jiangmiao/auto-pairs/,,
https://github.com/okuuva/auto-save.nvim/,,
https://github.com/rmagatti/auto-session/,,
https://github.com/m4xshen/autoclose.nvim/,,
https://github.com/gaoDean/autolist.nvim/,,
https://github.com/vim-scripts/autoload_cscope.vim/,,
https://github.com/nullishamy/autosave.nvim/,,
https://github.com/ActivityWatch/aw-watcher-vim/,,
https://github.com/lowitea/aw-watcher.nvim/,,
https://github.com/rafi/awesome-vim-colorschemes/,,
https://github.com/AhmedAbdulrahman/aylin.vim/,,
https://github.com/ayu-theme/ayu-vim/,,
https://github.com/taybart/b64.nvim/,,
https://github.com/m00qek/baleia.nvim/,,
https://github.com/ribru17/bamboo.nvim/,,
https://github.com/romgrk/barbar.nvim/,,
https://github.com/utilyre/barbecue.nvim/,,
https://github.com/RRethy/base16-nvim/,,
https://github.com/chriskempson/base16-vim/,,
https://github.com/nvchad/base46/,,
https://github.com/jamespwilliams/bat.vim/,,
https://github.com/vim-scripts/bats.vim/,,
https://github.com/rbgrouleff/bclose.vim/,,
https://github.com/sontungexpt/better-diagnostic-virtual-text/,,
https://github.com/max397574/better-escape.nvim/,,
https://github.com/LunarVim/bigfile.nvim/,,
https://github.com/openembedded/bitbake/,,
https://github.com/FabijanZulj/blame.nvim/,,
https://github.com/z4p5a9/blamer.nvim/,,
https://github.com/Kaiser-Yang/blink-cmp-avante/,,
https://github.com/disrupted/blink-cmp-conventional-commits/,,
https://github.com/giuxtaposition/blink-cmp-copilot/,,
https://github.com/Kaiser-Yang/blink-cmp-dictionary/,,
https://github.com/bydlw98/blink-cmp-env/,,
https://github.com/Kaiser-Yang/blink-cmp-git/,,
https://github.com/erooke/blink-cmp-latex/,,
https://github.com/GaetanLepage/blink-cmp-nixpkgs-maintainers/,,
https://github.com/alexandre-abrioux/blink-cmp-npm.nvim/,,
https://github.com/ribru17/blink-cmp-spell/,,
https://github.com/mgalliou/blink-cmp-tmux/,,
https://github.com/archie-judd/blink-cmp-words/,,
https://github.com/marcoSven/blink-cmp-yanky/,,
https://github.com/fang2hou/blink-copilot/,,
https://github.com/moyiz/blink-emoji.nvim/,,
https://github.com/MahanRahmati/blink-nerdfont.nvim/,,
https://github.com/mikavilpas/blink-ripgrep.nvim/,,
https://github.com/Saghen/blink.compat/,,
https://github.com/Saghen/blink.indent/,,
https://github.com/dundalek/bloat.nvim/,,
https://github.com/HampusHauffman/block.nvim/,,
https://github.com/uloco/bluloco.nvim/,,
https://github.com/rockerBOO/boo-colorscheme-nvim/,,
https://github.com/nat-418/boole.nvim/,,
https://github.com/turbio/bracey.vim/,,
https://github.com/fruit-in/brainfuck-vim/,,
https://github.com/famiu/bufdelete.nvim/,,
https://github.com/jlanzarotta/bufexplorer/,,
https://github.com/AndrewRadev/bufferize.vim/,,
https://github.com/akinsho/bufferline.nvim/,,
https://github.com/kwkarlwang/bufjump.nvim/,,
https://github.com/kwkarlwang/bufresize.nvim/,,
https://github.com/bullets-vim/bullets.vim/,,
https://github.com/itchyny/calendar.vim/,,
https://github.com/bkad/camelcasemotion/,,
https://github.com/catppuccin/nvim/,,catppuccin-nvim
https://github.com/catppuccin/vim/,,catppuccin-vim
https://github.com/tyru/caw.vim/,,
https://github.com/uga-rosa/ccc.nvim/,,
https://github.com/Eandrju/cellular-automaton.nvim/,,
https://github.com/ms-jpq/chadtree/,,
https://github.com/vim-scripts/changeColorScheme.vim/,,
https://github.com/sudormrfbin/cheatsheet.nvim/,,
https://github.com/bngarren/checkmate.nvim/,,
https://github.com/yunlingz/ci_dark/,,
https://github.com/declancm/cinnamon.nvim/,,
https://github.com/projekt0n/circles.nvim/,,
https://github.com/zootedb0t/citruszest.nvim/,,
https://github.com/xavierd/clang_complete/,,
https://git.sr.ht/~p00f/clangd_extensions.nvim,,
https://github.com/greggh/claude-code.nvim/,,
https://github.com/pittcat/claude-fzf-history.nvim/,,
https://github.com/pittcat/claude-fzf.nvim/,,
https://github.com/coder/claudecode.nvim/,,
https://github.com/rhysd/clever-f.vim/,,
https://github.com/bbchung/clighter8/,,
https://github.com/ekickx/clipboard-image.nvim/,,
https://github.com/laytan/cloak.nvim/,,
https://github.com/asheq/close-buffers.vim/,,
https://github.com/Civitasv/cmake-tools.nvim/,,
https://github.com/winston0410/cmd-parser.nvim/,,
https://github.com/vim-scripts/cmdalias.vim/,,
https://github.com/tzachar/cmp-ai/,,
https://codeberg.org/FelipeLema/cmp-async-path/,,
https://github.com/crispgm/cmp-beancount/,,
https://github.com/hrsh7th/cmp-buffer/,,
https://github.com/hrsh7th/cmp-calc/,,
https://github.com/vappolinario/cmp-clippy/,,
https://github.com/hrsh7th/cmp-cmdline/,,
https://github.com/dmitmel/cmp-cmdline-history/,,
https://github.com/PaterJason/cmp-conjure/,,
https://github.com/davidsierradz/cmp-conventionalcommits/,,
https://github.com/hrsh7th/cmp-copilot/,,
https://github.com/delphinus/cmp-ctags/,,
https://github.com/rcarriga/cmp-dap/,,
https://github.com/uga-rosa/cmp-dictionary/,,
https://github.com/dmitmel/cmp-digraphs/,,
https://github.com/SergioRibera/cmp-dotenv/,,
https://github.com/hrsh7th/cmp-emoji/,,
https://github.com/mtoohey31/cmp-fish/,,
https://github.com/tzachar/cmp-fuzzy-buffer/,,
https://github.com/tzachar/cmp-fuzzy-path/,,
https://github.com/petertriho/cmp-git/,,
https://github.com/max397574/cmp-greek/,,
https://github.com/kdheepak/cmp-latex-symbols/,,
https://github.com/octaltree/cmp-look/,,
https://github.com/notomo/cmp-neosnippet/,,
https://github.com/GaetanLepage/cmp-nixpkgs-maintainers/,,
https://github.com/David-Kunz/cmp-npm/,,
https://github.com/hrsh7th/cmp-nvim-lsp/,,
https://github.com/hrsh7th/cmp-nvim-lsp-document-symbol/,,
https://github.com/hrsh7th/cmp-nvim-lsp-signature-help/,,
https://github.com/hrsh7th/cmp-nvim-lua/,,
https://github.com/quangnguyen30192/cmp-nvim-tags/,,
https://github.com/quangnguyen30192/cmp-nvim-ultisnips/,,
https://github.com/hrsh7th/cmp-omni/,,
https://github.com/jmbuhr/cmp-pandoc-references/,,
https://github.com/aspeddro/cmp-pandoc.nvim/,,
https://github.com/hrsh7th/cmp-path/,,
https://github.com/lukas-reineke/cmp-rg/,,
https://github.com/dcampos/cmp-snippy/,,
https://github.com/f3fora/cmp-spell/,,
https://github.com/nzlov/cmp-tabby/,,
https://github.com/tzachar/cmp-tabnine/,,
https://github.com/andersevenrud/cmp-tmux/,,
https://github.com/ray-x/cmp-treesitter/,,
https://github.com/lukas-reineke/cmp-under-comparator/,,
https://github.com/dmitmel/cmp-vim-lsp/,,
https://github.com/micangl/cmp-vimtex/,,
https://github.com/pontusk/cmp-vimwiki-tags/,,
https://github.com/hrsh7th/cmp-vsnip/,,
https://github.com/tamago324/cmp-zsh/,,
https://github.com/saadparwaiz1/cmp_luasnip/,,
https://github.com/chrisgrieser/cmp_yanky/,,
https://github.com/lalitmee/cobalt2.nvim/,,
https://github.com/vn-ki/coc-clap/,,
https://github.com/neoclide/coc-denite/,,
https://github.com/antoinemadec/coc-fzf/,,
https://github.com/josa42/coc-lua/,,
https://github.com/neoclide/coc-neco/,,
https://github.com/coc-extensions/coc-svelte/,,
https://github.com/iamcco/coc-tailwindcss/,,
https://github.com/neoclide/coc.nvim/,release,
https://github.com/manicmaniac/coconut.vim/,,
https://github.com/ravitemer/codecompanion-history.nvim/,,
https://github.com/franco-ruggeri/codecompanion-lualine.nvim/,,
https://github.com/franco-ruggeri/codecompanion-spinner.nvim/,,
https://github.com/olimorris/codecompanion.nvim/,,
https://github.com/mrjones2014/codesettings.nvim/,,
https://github.com/gorbit99/codewindow.nvim/,,
https://github.com/johnseth97/codex.nvim/,,
https://github.com/metakirby5/codi.vim/,,
https://github.com/archseer/colibri.vim/,,
https://github.com/tjdevries/colorbuddy.nvim/,,
https://github.com/xzbdmw/colorful-menu.nvim/,,
https://github.com/nvim-zh/colorful-winsep.nvim/,,
https://github.com/lilydjwg/colorizer/,,
https://github.com/Domeee/com.cloudedmountain.ide.neovim/,,
https://github.com/mluders/comfy-line-numbers.nvim/,,
https://github.com/wincent/command-t/,,
https://github.com/saifulapm/commasemi.nvim/,,
https://github.com/LudoPinelli/comment-box.nvim/,,
https://github.com/numtostr/comment.nvim/,,
https://github.com/rhysd/committia.vim/,,
https://github.com/xeluxee/competitest.nvim/,,
https://github.com/krady21/compiler-explorer.nvim/,,
https://github.com/Zeioth/compiler.nvim/,,
https://github.com/steelsojka/completion-buffers/,,
https://github.com/nvim-lua/completion-nvim/,,
https://github.com/aca/completion-tabnine/,,
https://github.com/chikatoike/concealedyank.vim/,,
https://github.com/rhysd/conflict-marker.vim/,,
https://github.com/stevearc/conform.nvim/,,
https://github.com/Olical/conjure/,,
https://github.com/niklasdewally/conjure.nvim/,,
https://github.com/wellle/context.vim/,,
https://github.com/Shougo/context_filetype.vim/,,
https://github.com/banjo/contextfiles.nvim/,,
https://github.com/zbirenbaum/copilot-cmp/,,
https://github.com/copilotlsp-nvim/copilot-lsp/,,
https://github.com/AndreM222/copilot-lualine/,,
https://github.com/zbirenbaum/copilot.lua/,,
https://github.com/github/copilot.vim/,,
https://github.com/tomtomjhj/coq-lsp.nvim/,,
https://github.com/ms-jpq/coq.artifacts/,,
https://github.com/ms-jpq/coq.thirdparty/,,
https://github.com/jvoorhis/coq.vim/,,
https://github.com/ms-jpq/coq_nvim/,,
https://github.com/agda/cornelis/,,
https://github.com/lfilho/cosco.vim/,,
https://github.com/nixprime/cpsm/,,
https://github.com/saecki/crates.nvim/,,
https://github.com/godlygeek/csapprox/,,
https://github.com/Decodetalkers/csharpls-extended-lsp.nvim/,,
https://github.com/davidmh/cspell.nvim/,,
https://github.com/chrisbra/csv.vim/,,
https://github.com/hat0uma/csvview.nvim/,,
https://github.com/JazzCore/ctrlp-cmatcher/,,
https://github.com/FelikZ/ctrlp-py-matcher/,,
https://github.com/amiorin/ctrlp-z/,,
https://github.com/ctrlpvim/ctrlp.vim/,,
https://github.com/gbprod/cutlass.nvim/,,
https://github.com/scottmckendry/cyberdream.nvim/,,
https://github.com/ghillb/cybu.nvim/,,
https://github.com/terrastruct/d2-vim/,,
https://github.com/JachymPutta/dailies.nvim/,,
https://github.com/Koalhack/darcubox-nvim/,,
https://github.com/ptdewey/darkearth-nvim/,,
https://github.com/dart-lang/dart-vim-plugin/,,
https://github.com/iofq/dart.nvim/,,
https://github.com/joseotaviorf/dash.vim/,,
https://github.com/nvimdev/dashboard-nvim/,,
https://github.com/Shougo/ddc-filter-matcher_head/,,
https://github.com/Shougo/ddc-filter-sorter_rank/,,
https://github.com/tani/ddc-fuzzy/,,
https://github.com/Shougo/ddc-source-around/,,
https://github.com/LumaKernel/ddc-source-file/,,
https://github.com/Shougo/ddc-source-lsp/,,
https://github.com/Shougo/ddc-ui-native/,,
https://github.com/Shougo/ddc-ui-pum/,,
https://github.com/Shougo/ddc.vim/,,
https://github.com/MironPascalCaseFan/debugmaster.nvim/,,
https://github.com/andrewferrier/debugprint.nvim/,,
https://github.com/Verf/deepwhite.nvim/,,
https://github.com/kristijanhusak/defx-git/,,
https://github.com/kristijanhusak/defx-icons/,,
https://github.com/Shougo/defx.nvim/,,
https://github.com/Raimondi/delimitMate/,,
https://github.com/mawkler/demicolon.nvim/,,
https://github.com/neoclide/denite-extra/,,
https://github.com/neoclide/denite-git/,,
https://github.com/Shougo/denite.nvim/,,
https://github.com/vim-denops/denops.vim/,,
https://github.com/Shougo/deol.nvim/,,
https://github.com/deoplete-plugins/deoplete-clang/,,
https://github.com/deoplete-plugins/deoplete-dictionary/,,
https://github.com/ponko2/deoplete-fish/,,
https://github.com/SevereOverfl0w/deoplete-github/,,
https://github.com/deoplete-plugins/deoplete-go/,,
https://github.com/Inazuma110/deoplete-greek/,,
https://github.com/deoplete-plugins/deoplete-jedi/,,
https://github.com/JuliaEditorSupport/deoplete-julia/,,
https://github.com/nicoe/deoplete-khard/,,
https://github.com/deoplete-plugins/deoplete-lsp/,,
https://github.com/Valodim/deoplete-notmuch/,,
https://github.com/kristijanhusak/deoplete-phpactor/,,
https://github.com/sebastianmarkow/deoplete-rust/,,
https://github.com/tbodt/deoplete-tabnine/,,
https://github.com/carlitux/deoplete-ternjs/,,
https://github.com/lighttiger2505/deoplete-vim-lsp/,,
https://github.com/deoplete-plugins/deoplete-zsh/,,
https://github.com/Shougo/deoplete.nvim/,,
https://github.com/maskudo/devdocs.nvim/,,
https://github.com/rhysd/devdocs.vim/,,
https://github.com/mahyarmirrashed/devexcuses.nvim/,,
https://github.com/vmchale/dhall-vim/,,
https://github.com/dgagn/diagflow.nvim/,,
https://github.com/onsails/diaglist.nvim/,,
https://github.com/nvim-lua/diagnostic-nvim/,,
https://github.com/3rd/diagram.nvim/,,
https://github.com/monaqa/dial.nvim/,,
https://github.com/barrettruth/diffs.nvim/,,
https://github.com/sindrets/diffview.nvim/,,
https://github.com/elihunter173/dirbuf.nvim/,,
https://github.com/direnv/direnv.vim/,,
https://github.com/chipsenkbeil/distant.nvim/,,
https://github.com/doki-theme/doki-theme-vim/,,
https://github.com/NTBBloodbath/doom-one.nvim/,,
https://github.com/MoaidHathot/dotnet.nvim/,,
https://github.com/dracula/vim/,,dracula-vim
https://github.com/Mofiqul/dracula.nvim/,,
https://github.com/stevearc/dressing.nvim/,,
https://github.com/Bekaboo/dropbar.nvim/,,
https://github.com/tamton-aquib/duck.nvim/,,
https://github.com/earthly/earthly.vim/,,
https://github.com/GustavEikaas/easy-dotnet.nvim/,,
https://github.com/JellyApple102/easyread.nvim/,,
https://github.com/Shougo/echodoc.vim/,,
https://github.com/ph1losof/ecolog.nvim/,,
https://github.com/sainnhe/edge/,,
https://github.com/geldata/edgedb-vim/,,
https://github.com/folke/edgy.nvim/,,
https://github.com/editorconfig/editorconfig-vim/,,
https://github.com/gpanders/editorconfig.nvim/,,
https://github.com/creativenull/efmls-configs-nvim/,,
https://github.com/elixir-tools/elixir-tools.nvim/,,
https://github.com/elmcast/elm-vim/,,
https://github.com/dmix/elvish.vim/,,
https://github.com/embark-theme/vim/,,embark-vim
https://github.com/mattn/emmet-vim/,,
https://github.com/vim-scripts/emodeline/,,
https://github.com/ovk/endec.nvim/,,
https://github.com/vim-scripts/errormarker.vim/,,
https://github.com/hachy/eva01.vim/,,
https://github.com/sainnhe/everforest/,,
https://codeberg.org/evergarden/nvim,,evergarden-nvim
https://github.com/google/executor.nvim/,,
https://github.com/jinh0/eyeliner.nvim/,,
https://github.com/fenetikm/falcon/,,
https://github.com/mahyarmirrashed/famous-quotes.nvim/,,
https://github.com/brooth/far.vim/,,
https://github.com/Chaitanyabsprip/fastaction.nvim/,,
https://github.com/pteroctopus/faster.nvim/,,
https://github.com/konfekt/fastfold/,,
https://github.com/madskjeldgaard/faust-nvim/,,
https://github.com/lilydjwg/fcitx.vim/,fcitx5,
https://github.com/micampe/fennel.vim/,,
https://github.com/wincent/ferret/,,
https://github.com/bogado/file-line/,,
https://github.com/lewis6991/fileline.nvim/,,
https://github.com/VonHeikemen/fine-cmdline.nvim/,,
https://github.com/glacambre/firenvim/,,
https://github.com/andviro/flake8-vim/,,
https://github.com/folke/flash.nvim/,,
https://github.com/willothy/flatten.nvim/,,
https://github.com/felipeagc/fleet-theme-nvim/,,
https://github.com/ggandor/flit.nvim/,,
https://github.com/ncm2/float-preview.nvim/,,
https://github.com/nvzone/floaterm/,,
https://github.com/liangxianzhe/floating-input.nvim/,,
https://github.com/floobits/floobits-neovim/,,
https://github.com/0xstepit/flow.nvim/,,
https://github.com/projectfluent/fluent.vim/,,
https://github.com/maxmx03/fluoromachine.nvim/,,
https://github.com/nvim-flutter/flutter-tools.nvim/,,
https://github.com/nvim-focus/focus.nvim/,,
https://github.com/anuvyklack/fold-preview.nvim/,,
https://github.com/jghauser/follow-md-links.nvim/,,
https://github.com/mhartington/formatter.nvim/,,
https://github.com/megaannum/forms/,,
https://github.com/rubiin/fortune.nvim/,,
https://github.com/charm-and-friends/freeze.nvim/,,
https://github.com/rafamadriz/friendly-snippets/,,
https://github.com/SuperBo/fugit2.nvim/,,
https://github.com/shumphrey/fugitive-gitlab.vim/,,
https://github.com/BeneCollyridam/futhark-vim/,,
https://github.com/tzachar/fuzzy.nvim/,,
https://github.com/rktjmp/fwatch.nvim/,,
https://github.com/A7Lavinraj/fyler.nvim/,stable,
https://github.com/stsewd/fzf-checkout.vim/,,
https://github.com/monkoose/fzf-hoogle.vim/,,
https://github.com/gfanto/fzf-lsp.nvim/,,
https://github.com/junegunn/fzf.vim/,,
https://github.com/NTBBloodbath/galaxyline.nvim/,,
https://github.com/Zeioth/garbage-day.nvim/,,
https://github.com/gbprod/nord.nvim/,,gbprod-nord
https://github.com/Teatek/gdscript-extended-lsp.nvim/,,
https://github.com/David-Kunz/gen.nvim/,,
https://github.com/jsfaint/gen_tags.vim/,,
https://github.com/gentoo/gentoo-syntax/,,
https://github.com/ldelossa/gh.nvim/,,
https://github.com/ndmitchell/ghcid/,,
https://github.com/eagletmt/ghcmod-vim/,,
https://github.com/f-person/git-blame.nvim/,,
https://github.com/akinsho/git-conflict.nvim/,,
https://github.com/juansalvatore/git-dashboard-nvim/,,
https://github.com/moyiz/git-dev.nvim/,,
https://github.com/rhysd/git-messenger.vim/,,
https://github.com/mikesmithgh/git-prompt-string-lualine.nvim/,,
https://github.com/polarmutex/git-worktree.nvim/,,
https://github.com/projekt0n/github-nvim-theme/,,
https://github.com/wintermute-cell/gitignore.nvim/,,
https://github.com/vim-scripts/gitignore.vim/,,
https://gitlab.com/gitlab-org/editor-extensions/gitlab.vim,,
https://github.com/LionyxML/gitlineage.nvim/,,
https://github.com/ruifm/gitlinker.nvim/,,
https://github.com/trevorhauter/gitportal.nvim/,,
https://github.com/gregsexton/gitv/,,
https://github.com/DNLHC/glance.nvim/,,
https://github.com/ellisonleao/glow.nvim/,,
https://github.com/ray-x/go.nvim/,,
https://github.com/dchinmay2/godbolt.nvim/,,
https://github.com/roman/golden-ratio/,,
https://github.com/buoto/gotests-vim/,,
https://github.com/rmagatti/goto-preview/,,
https://github.com/junegunn/goyo.vim/,,
https://github.com/brymer-meneses/grammar-guard.nvim/,,
https://github.com/liuchengxu/graphviz.vim/,,
https://github.com/cbochs/grapple.nvim/,,
https://github.com/blazkowolf/gruber-darker.nvim/,,
https://github.com/morhetz/gruvbox/,,
https://github.com/Xoconoch/gruvbox-alabaster.nvim/,,
https://github.com/luisiacc/gruvbox-baby/,,
https://github.com/gruvbox-community/gruvbox/,,gruvbox-community
https://github.com/eddyekofo94/gruvbox-flat.nvim/,,
https://github.com/sainnhe/gruvbox-material/,,
https://github.com/f4z3r/gruvbox-material.nvim/,,
https://github.com/ellisonleao/gruvbox.nvim/,,
https://github.com/nvimdev/guard-collection/,,
https://github.com/nvimdev/guard.nvim/,,
https://github.com/nmac427/guess-indent.nvim/,,
https://github.com/ray-x/guihua.lua/,,
https://github.com/sjl/gundo.vim/,,
https://github.com/junegunn/gv.vim/,,
https://github.com/chrishrb/gx.nvim/,,
https://github.com/TheSnakeWitcher/hardhat.nvim/,,
https://github.com/m4xshen/hardtime.nvim/,,
https://git.sr.ht/~sircmpwn/hare.vim,,
https://github.com/ThePrimeagen/harpoon/,,
https://github.com/ThePrimeagen/harpoon/,harpoon2,harpoon2
https://github.com/kiyoon/haskell-scope-highlighting.nvim/,,
https://github.com/mrcjkb/haskell-snippets.nvim/,,
https://github.com/neovimhaskell/haskell-vim/,,
https://github.com/wenzel-hoffman/haskell-with-unicode.vim/,,
https://github.com/travitch/hasksyn/,,
https://github.com/StackInTheWild/headhunter.nvim/,,
https://github.com/lukas-reineke/headlines.nvim/,,
https://github.com/rebelot/heirline.nvim/,,
https://github.com/qvalentin/helm-ls.nvim/,,
https://github.com/OXY2DEV/helpview.nvim/,,
https://github.com/RaafatTurki/hex.nvim/,,
https://github.com/Yggdroot/hiPairs/,,
https://github.com/tzachar/highlight-undo.nvim/,,
https://github.com/pimalaya/himalaya-vim/,,
https://github.com/m-demare/hlargs.nvim/,,
https://github.com/shellRaining/hlchunk.nvim/,,
https://github.com/mpickering/hlint-refactor-vim/,,
https://github.com/calops/hmts.nvim/,,
https://github.com/edluffy/hologram.nvim/,,
https://github.com/urbit/hoon.vim/,,
https://github.com/smoka7/hop.nvim/,,
https://github.com/rktjmp/hotpot.nvim/,,
https://github.com/TheBlob42/houdini.nvim/,,
https://github.com/lewis6991/hover.nvim/,,
https://github.com/othree/html5.vim/,,
https://github.com/julienvincent/hunk.nvim/,,
https://github.com/jellydn/hurl.nvim/,,
https://github.com/nvimtools/hydra.nvim/,,
https://github.com/mboughaba/i3config.vim/,,
https://github.com/cocopon/iceberg.vim/,,
https://github.com/idris-hackers/idris-vim/,,
https://github.com/idris-community/idris2-nvim/,,
https://github.com/edwinb/idris2-vim/,,
https://github.com/keaising/im-select.nvim/,,
https://github.com/HakonHarnes/img-clip.nvim/,,
https://github.com/lewis6991/impatient.nvim/,,
https://github.com/backdround/improved-search.nvim/,,
https://github.com/smjonas/inc-rename.nvim/,,
https://github.com/b0o/incline.nvim/,,
https://github.com/nishigori/increment-activator/,,
https://github.com/haya14busa/incsearch-easymotion.vim/,,
https://github.com/haya14busa/incsearch.vim/,,
https://github.com/lukas-reineke/indent-blankline.nvim/,,
https://github.com/Darazaki/indent-o-matic/,,
https://github.com/arsham/indent-tools.nvim/,,
https://github.com/Yggdroot/indentLine/,,
https://github.com/ciaranm/inkpot/,,
https://github.com/jbyuki/instant.nvim/,,
https://github.com/pta2002/intellitab.nvim/,,
https://github.com/parsonsmatt/intero-neovim/,,
https://github.com/keith/investigate.vim/,,
https://github.com/neutaaaaan/iosvkem/,,
https://github.com/ajbucci/ipynb.nvim/,,
https://github.com/twerth/ir_black/,,
https://github.com/Vigemus/iron.nvim/,,
https://github.com/haya14busa/is.vim/,,
https://github.com/Treeniks/isabelle-lsp.nvim/,,
https://github.com/Treeniks/isabelle-syn.nvim/,,
https://github.com/mizlan/iswap.nvim/,,
https://github.com/vim-scripts/jdaddy.vim/,,
https://github.com/mahyarmirrashed/jdd.nvim/,,
https://github.com/davidhalter/jedi-vim/,,
https://github.com/metalelf0/jellybeans-nvim/,,
https://github.com/nanotech/jellybeans.vim/,,
https://github.com/HiPhish/jinja.vim/,,
https://github.com/NicolasGB/jj.nvim/,,
https://github.com/vito-c/jq.vim/,,
https://github.com/neoclide/jsonc.vim/,,
https://git.myzel394.app/Myzel394/jsonfly.nvim,,
https://github.com/julelang/jule.nvim/,,
https://github.com/JuliaEditorSupport/julia-vim/,,
https://github.com/GCBallesteros/jupytext.nvim/,,
https://github.com/nxuv/just.nvim/,,
https://github.com/thesimonho/kanagawa-paper.nvim/,,
https://github.com/rebelot/kanagawa.nvim/,,
https://github.com/webhooked/kanso.nvim/,,
https://github.com/imsnif/kdl.vim/,,
https://github.com/anuvyklack/keymap-layer.nvim/,,
https://github.com/mikesmithgh/kitty-scrollback.nvim/,,
https://github.com/serenevoid/kiwi.nvim/,,
https://github.com/kmonad/kmonad-vim/,,
https://github.com/frabjous/knap/,,
https://github.com/oskarnurm/koda.nvim/,,
https://github.com/b3nj5m1n/kommentary/,,
https://github.com/udalov/kotlin-vim/,,
https://github.com/mistweaverco/kulala.nvim/,,
https://github.com/slugbyte/lackluster.nvim/,,
https://github.com/qnighy/lalrpop.vim/,,
https://github.com/Wansmer/langmapper.nvim/,,
https://github.com/sk1418/last256/,,
https://github.com/latex-box-team/latex-box/,,
https://github.com/dundalek/lazy-lsp.nvim/,,
https://github.com/folke/lazy.nvim/,,
https://github.com/folke/lazydev.nvim/,,
https://github.com/crnvl96/lazydocker.nvim/,,
https://github.com/kdheepak/lazygit.nvim/,,
https://github.com/swaits/lazyjj.nvim/,,
https://github.com/Julian/lean.nvim/,,
https://github.com/leanprover/lean.vim/,,
https://github.com/ggandor/leap-ast.nvim/,,
https://codeberg.org/andyg/leap.nvim/,,
https://github.com/kawre/leetcode.nvim/,,
https://github.com/mrjones2014/legendary.nvim/,,
https://github.com/camspiers/lens.vim/,,
https://github.com/oribarilan/lensline.nvim/,,
https://github.com/thirtythreeforty/lessspace.vim/,,
https://github.com/cohama/lexima.vim/,,
https://github.com/lmburns/lf.nvim/,,
https://github.com/ptzz/lf.vim/,,
https://github.com/LucHermitte/lh-brackets/,,
https://github.com/LucHermitte/lh-vim-lib/,,
https://github.com/max-baz/lightline-ale/,,
https://github.com/mengelbrecht/lightline-bufferline/,,
https://github.com/shinchu/lightline-gruvbox.vim/,,
https://github.com/spywhere/lightline-lsp/,,
https://github.com/itchyny/lightline.vim/,,
https://github.com/ggandor/lightspeed.nvim/,,
https://github.com/markgandolfo/lightswitch.nvim/,,
https://github.com/junegunn/limelight.vim/,,
https://github.com/AndrewRadev/linediff.vim/,,
https://github.com/lf-lang/lingua-franca.vim/,,
https://github.com/tamago324/lir.nvim/,,
https://github.com/kkharji/lispdocs.nvim/,,
https://github.com/ldelossa/litee-calltree.nvim/,,
https://github.com/ldelossa/litee-filetree.nvim/,,
https://github.com/ldelossa/litee-symboltree.nvim/,,
https://github.com/ldelossa/litee.nvim/,,
https://github.com/smjonas/live-command.nvim/,,
https://github.com/brianhuster/live-preview.nvim/,,
https://github.com/saecki/live-rename.nvim/,,
https://github.com/azratul/live-share.nvim/,,
https://github.com/ggml-org/llama.vim/,,
https://github.com/huggingface/llm.nvim/,,
https://github.com/folke/lsp-colors.nvim/,,
https://github.com/joechrisellis/lsp-format-modifications.nvim/,,
https://github.com/lukas-reineke/lsp-format.nvim/,,
https://github.com/lvimuser/lsp-inlayhints.nvim/,,
https://github.com/Issafalcon/lsp-overloads.nvim/,main,
https://github.com/ahmedkhalf/lsp-rooter.nvim/,,
https://github.com/nvim-lua/lsp-status.nvim/,,
https://github.com/VonHeikemen/lsp-zero.nvim/,,
https://github.com/nvim-lua/lsp_extensions.nvim/,,
https://git.sr.ht/~whynothugo/lsp_lines.nvim,,
https://github.com/ray-x/lsp_signature.nvim/,,
https://github.com/lspcontainers/lspcontainers.nvim/,,
https://github.com/deathbeam/lspecho.nvim/,,
https://github.com/onsails/lspkind.nvim/,,
https://github.com/nvimdev/lspsaga.nvim/,,
https://github.com/barreiroleo/ltex_extra.nvim/,,
https://github.com/nvim-java/lua-async/,,
https://github.com/arkav/lualine-lsp-progress/,,
https://github.com/evesdropper/luasnip-latex-snippets.nvim/,,
https://github.com/alvarosevilla95/luatab.nvim/,,
https://github.com/lopi-py/luau-lsp.nvim/,,
https://github.com/mkasa/lushtags/,,
https://github.com/Bilal2453/luvit-meta/,,
https://github.com/dccsillag/magma-nvim/,,
https://github.com/forest-nvim/maple.nvim/,,
https://github.com/winston0410/mark-radar.nvim/,,
https://github.com/OXY2DEV/markdoc.nvim/,,
https://github.com/iamcco/markdown-preview.nvim/,,
https://github.com/tadmccorkle/markdown.nvim/,,
https://github.com/David-Kunz/markid/,,
https://github.com/chentoast/marks.nvim/,,
https://github.com/OXY2DEV/markview.nvim/,,
https://github.com/mason-org/mason-lspconfig.nvim/,,
https://github.com/jay-babu/mason-null-ls.nvim/,,
https://github.com/jay-babu/mason-nvim-dap.nvim/,,
https://github.com/WhoIsSethDaniel/mason-tool-installer.nvim/,,
https://github.com/mason-org/mason.nvim/,,
https://github.com/vim-scripts/matchit.zip/,,
https://github.com/marko-cerovac/material.nvim/,,
https://github.com/kaicataldo/material.vim/,,
https://github.com/mattn/calendar-vim/,,mattn-calendar-vim
https://github.com/vim-scripts/mayansmoke/,,
https://github.com/ravitemer/mcphub.nvim/,,
https://github.com/chikamichi/mediawiki.vim/,,
https://github.com/savq/melange-nvim/,,
https://github.com/mellow-theme/mellow.nvim/,,
https://github.com/lsig/messenger.nvim/,,
https://github.com/xero/miasma.nvim/,,
https://github.com/dasupradyumna/midnight.nvim/,,
https://github.com/hadronized/mind.nvim/,,
https://github.com/nvim-mini/mini-git/,,
https://github.com/nvim-mini/mini.ai/,,
https://github.com/nvim-mini/mini.align/,,
https://github.com/nvim-mini/mini.animate/,,
https://github.com/nvim-mini/mini.base16/,,
https://github.com/nvim-mini/mini.basics/,,
https://github.com/nvim-mini/mini.bracketed/,,
https://github.com/nvim-mini/mini.bufremove/,,
https://github.com/nvim-mini/mini.clue/,,
https://github.com/nvim-mini/mini.cmdline/,,
https://github.com/nvim-mini/mini.colors/,,
https://github.com/nvim-mini/mini.comment/,,
https://github.com/nvim-mini/mini.completion/,,
https://github.com/nvim-mini/mini.cursorword/,,
https://github.com/nvim-mini/mini.deps/,,
https://github.com/nvim-mini/mini.diff/,,
https://github.com/nvim-mini/mini.doc/,,
https://github.com/nvim-mini/mini.extra/,,
https://github.com/nvim-mini/mini.files/,,
https://github.com/nvim-mini/mini.fuzzy/,,
https://github.com/nvim-mini/mini.hipatterns/,,
https://github.com/nvim-mini/mini.hues/,,
https://github.com/nvim-mini/mini.icons/,,
https://github.com/nvim-mini/mini.indentscope/,,
https://github.com/nvim-mini/mini.jump/,,
https://github.com/nvim-mini/mini.jump2d/,,
https://github.com/nvim-mini/mini.keymap/,,
https://github.com/nvim-mini/mini.map/,,
https://github.com/nvim-mini/mini.misc/,,
https://github.com/nvim-mini/mini.move/,,
https://github.com/nvim-mini/mini.notify/,,
https://github.com/nvim-mini/mini.nvim/,,
https://github.com/nvim-mini/mini.operators/,,
https://github.com/nvim-mini/mini.pairs/,,
https://github.com/nvim-mini/mini.pick/,,
https://github.com/nvim-mini/mini.sessions/,,
https://github.com/nvim-mini/mini.snippets/,,
https://github.com/nvim-mini/mini.splitjoin/,,
https://github.com/nvim-mini/mini.starter/,,
https://github.com/nvim-mini/mini.statusline/,,
https://github.com/nvim-mini/mini.surround/,,
https://github.com/nvim-mini/mini.tabline/,,
https://github.com/nvim-mini/mini.trailspace/,,
https://github.com/nvim-mini/mini.visits/,,
https://github.com/wfxr/minimap.vim/,,
https://github.com/milanglacier/minuet-ai.nvim/,,
https://github.com/jghauser/mkdir.nvim/,,
https://github.com/jakewvincent/mkdnflow.nvim/,,
https://github.com/SidOfc/mkdx/,,
https://github.com/gsuuon/model.nvim/,,
https://github.com/mawkler/modicator.nvim/,,
https://github.com/miikanissi/modus-themes.nvim/,,
https://github.com/tomasr/molokai/,,
https://github.com/benlubas/molten-nvim/,,
https://github.com/jackplus-xyz/monaspace.nvim/,,
https://github.com/loctvl842/monokai-pro.nvim/,,
https://github.com/shaunsingh/moonlight.nvim/,,
https://github.com/leafo/moonscript-vim/,,
https://github.com/yegappan/mru/,,
https://github.com/jake-stewart/multicursor.nvim/,,
https://github.com/smoka7/multicursors.nvim/,,
https://github.com/AckslD/muren.nvim/,,
https://github.com/jbyuki/nabla.nvim/,,
https://github.com/ncm2/ncm2/,,
https://github.com/ncm2/ncm2-bufword/,,
https://github.com/ncm2/ncm2-cssomni/,,
https://github.com/yuki-yano/ncm2-dictionary/,,
https://github.com/ncm2/ncm2-github/,,
https://github.com/ncm2/ncm2-html-subscope/,,
https://github.com/ncm2/ncm2-jedi/,,
https://github.com/ncm2/ncm2-markdown-subscope/,,
https://github.com/ncm2/ncm2-neoinclude/,,
https://github.com/ncm2/ncm2-neosnippet/,,
https://github.com/ncm2/ncm2-path/,,
https://github.com/ncm2/ncm2-syntax/,,
https://github.com/ncm2/ncm2-tagprefix/,,
https://github.com/ncm2/ncm2-tmux/,,
https://github.com/ncm2/ncm2-ultisnips/,,
https://github.com/ncm2/ncm2-vim/,,
https://github.com/eagletmt/neco-ghc/,,
https://github.com/ujihisa/neco-look/,,
https://github.com/Shougo/neco-syntax/,,
https://github.com/Shougo/neco-vim/,,
https://github.com/nvim-neo-tree/neo-tree.nvim/,,
https://github.com/Shougo/neocomplete.vim/,,
https://github.com/folke/neoconf.nvim/,,
https://github.com/IogaMaster/neocord/,,
https://github.com/KeitaNakamura/neodark.vim/,,
https://github.com/folke/neodev.nvim/,,
https://github.com/sbdchd/neoformat/,,
https://github.com/danymat/neogen/,,
https://github.com/NeogitOrg/neogit/,,
https://github.com/Shougo/neoinclude.vim/,,
https://github.com/neomake/neomake/,,
https://github.com/casedami/neomodern.nvim/,,
https://github.com/Shougo/neomru.vim/,,
https://github.com/neomutt/neomutt.vim/,,
https://github.com/rafamadriz/neon/,,
https://github.com/ii14/neorepl.nvim/,,
https://github.com/nvim-neorg/neorg-telescope/,,
https://github.com/karb94/neoscroll.nvim/,,
https://github.com/Shougo/neosnippet-snippets/,,
https://github.com/Shougo/neosnippet.vim/,,
https://github.com/kawre/neotab.nvim/,,
https://github.com/kassio/neoterm/,,
https://github.com/rcasia/neotest-bash/,,
https://github.com/orjangj/neotest-ctest/,,
https://github.com/sidlatau/neotest-dart/,,
https://github.com/MarkEmmons/neotest-deno/,,
https://github.com/Issafalcon/neotest-dotnet/,,
https://github.com/jfpedroza/neotest-elixir/,,
https://github.com/llllvvuu/neotest-foundry/,,
https://github.com/nvim-neotest/neotest-go/,,
https://github.com/fredrikaverpil/neotest-golang/,,
https://github.com/weilbith/neotest-gradle/,,
https://github.com/alfaix/neotest-gtest/,,
https://github.com/MrcJkb/neotest-haskell/,,
https://github.com/rcasia/neotest-java/,,
https://github.com/nvim-neotest/neotest-jest/,,
https://github.com/zidhuss/neotest-minitest/,,
https://github.com/adrigzr/neotest-mocha/,,
https://github.com/theutz/neotest-pest/,,
https://github.com/olimorris/neotest-phpunit/,,
https://github.com/thenbe/neotest-playwright/,,
https://github.com/nvim-neotest/neotest-plenary/,,
https://github.com/nvim-neotest/neotest-python/,,
https://github.com/olimorris/neotest-rspec/,,
https://github.com/rouge8/neotest-rust/,,
https://github.com/stevanmilic/neotest-scala/,,
https://github.com/shunsambongi/neotest-testthat/,,
https://github.com/marilari88/neotest-vitest/,,
https://github.com/lawrence-laz/neotest-zig/,,
https://github.com/Shatur/neovim-ayu/,,
https://github.com/cloudhead/neovim-fuzzy/,,
https://github.com/jeffkreeftmeijer/neovim-sensible/,,
https://github.com/saxon1964/neovim-tips/,,
https://github.com/trunk-io/neovim-trunk/,,
https://github.com/Shougo/neoyank.vim/,,
https://github.com/preservim/nerdcommenter/,,
https://github.com/preservim/nerdtree/,,
https://github.com/Xuyuanp/nerdtree-git-plugin/,,
https://github.com/2KAbhishek/nerdy.nvim/,,
https://github.com/miversen33/netman.nvim/,,
https://github.com/prichrd/netrw.nvim/,,
https://github.com/fiatjaf/neuron.vim/,,
https://github.com/Olical/nfnl/,main,
https://github.com/joeveiga/ng.nvim/,,
https://github.com/chr4/nginx.vim/,,
https://codeberg.org/koibtw/nidhogg.nvim,,
https://github.com/oxfist/night-owl.nvim/,,
https://github.com/bluz71/vim-nightfly-colors/,,nightfly
https://github.com/EdenEast/nightfox.nvim/,,
https://github.com/Alexis12119/nightly.nvim/,,
https://github.com/zah/nim.vim/,,
https://github.com/figsoda/nix-develop.nvim/,,
https://github.com/tamago324/nlsp-settings.nvim/,,
https://github.com/mcchrish/nnn.vim/,,
https://github.com/aktersnurra/no-clown-fiesta.nvim/,,
https://github.com/shortcuts/no-neck-pain.nvim/,,
https://github.com/kartikp10/noctis.nvim/,,
https://github.com/folke/noice.nvim/,,
https://github.com/nvimtools/none-ls.nvim/,,
https://github.com/nordtheme/vim/,,nord-vim
https://github.com/shaunsingh/nord.nvim/,,
https://github.com/andersevenrud/nordic.nvim/,,
https://github.com/vigoux/notifier.nvim/,,
https://github.com/jlesquembre/nterm.nvim/,,
https://github.com/jose-elias-alvarez/null-ls.nvim/,,
https://github.com/nacro90/numb.nvim/,,
https://github.com/nvchad/nvchad/,,
https://github.com/nvchad/ui/,,nvchad-ui
https://github.com/ChristianChiarulli/nvcode-color-schemes.vim/,,
https://github.com/AckslD/nvim-FeMaco.lua/,,
https://github.com/nathanmsmith/nvim-ale-diagnostic/,,
https://github.com/mfussenegger/nvim-ansible/,,
https://github.com/windwp/nvim-autopairs/,,
https://github.com/Canop/nvim-bacon/,,
https://github.com/code-biscuits/nvim-biscuits/,,
https://github.com/kevinhwang91/nvim-bqf/,,
https://github.com/ojroques/nvim-bufdel/,,
https://github.com/roxma/nvim-cm-racer/,,
https://github.com/weilbith/nvim-code-action-menu/,,
https://github.com/willothy/nvim-cokeline/,,
https://github.com/catgoose/nvim-colorizer.lua/,,
https://github.com/terrortylor/nvim-comment/,,
https://github.com/roxma/nvim-completion-manager/,,
https://github.com/klen/nvim-config-local/,,
https://github.com/andythigpen/nvim-coverage/,,
https://github.com/ya2s/nvim-cursorline/,,
https://codeberg.org/mfussenegger/nvim-dap/,,
https://github.com/jedrzejboczar/nvim-dap-cortex-debug/,,
https://github.com/docker/nvim-dap-docker/,,
https://github.com/leoluz/nvim-dap-go/,,
https://github.com/julianolf/nvim-dap-lldb/,,
https://codeberg.org/mfussenegger/nvim-dap-python/,,
https://github.com/rinx/nvim-dap-rego/,,
https://github.com/jonboh/nvim-dap-rr/,,
https://github.com/suketa/nvim-dap-ruby/,,
https://github.com/rcarriga/nvim-dap-ui/,,
https://github.com/igorlfs/nvim-dap-view/,,
https://github.com/theHamsta/nvim-dap-virtual-text/,,
https://github.com/mxsdev/nvim-dap-vscode-js/,,
https://github.com/amrbashir/nvim-docs-view/,,
https://github.com/chrisgrieser/nvim-early-retirement/,,
https://github.com/allendang/nvim-expand-expr/,,
https://github.com/vijaymarupudi/nvim-fzf/,,
https://github.com/vijaymarupudi/nvim-fzf-commands/,,
https://github.com/sakhnik/nvim-gdb/,,
https://github.com/chrisgrieser/nvim-genghis/,,
https://github.com/booperlv/nvim-gomove/,,
https://github.com/brenoprata10/nvim-highlight-colors/,,
https://github.com/Iron-E/nvim-highlite/,,
https://github.com/kevinhwang91/nvim-hlslens/,,
https://github.com/neovimhaskell/nvim-hs.vim/,,
https://github.com/idanarye/nvim-impairative/,,
https://github.com/nvim-java/nvim-java/,,
https://github.com/nvim-java/nvim-java-core/,,
https://github.com/nvim-java/nvim-java-dap/,,
https://github.com/nvim-java/nvim-java-refactor/,,
https://github.com/nvim-java/nvim-java-test/,,
https://codeberg.org/mfussenegger/nvim-jdtls/,,
https://github.com/gennaro-tedesco/nvim-jqx/,,
https://gitlab.com/usmcamp0811/nvim-julia-autotest,,
https://github.com/yorickpeterse/nvim-jump/,,
https://github.com/chrisgrieser/nvim-justice/,,
https://github.com/anasinnyk/nvim-k8s-crd/,,
https://github.com/ethanholz/nvim-lastplace/,,
https://github.com/kosayoda/nvim-lightbulb/,,
https://github.com/josa42/nvim-lightline-lsp/,,
https://github.com/martineausimon/nvim-lilypond-suite/,,
https://codeberg.org/mfussenegger/nvim-lint/,,
https://github.com/antosha417/nvim-lsp-file-operations/,,
https://github.com/mrded/nvim-lsp-notify/,,
https://github.com/jose-elias-alvarez/nvim-lsp-ts-utils/,,
https://github.com/neovim/nvim-lspconfig/,,
https://github.com/RishabhRD/nvim-lsputils/,,
https://github.com/sam4llis/nvim-lua-gf/,,
https://github.com/bfredl/nvim-luadev/,,
https://github.com/rafcamlet/nvim-luapad/,,
https://github.com/scalameta/nvim-metals/,,
https://github.com/gpanders/nvim-moonwalk/,,
https://github.com/SmiteshP/nvim-navbuddy/,,
https://github.com/smiteshp/nvim-navic/,,
https://github.com/AckslD/nvim-neoclip.lua/,,
https://github.com/ghostbuster91/nvim-next/,,
https://github.com/ya2s/nvim-nonicons/,,
https://github.com/rcarriga/nvim-notify/,,
https://github.com/LhKipp/nvim-nu/,,
https://github.com/sitiom/nvim-numbertoggle/,,
https://github.com/chrisgrieser/nvim-origami/,,
https://github.com/ojroques/nvim-osc52/,,
https://github.com/julienvincent/nvim-paredit/,,
https://github.com/gpanders/nvim-parinfer/,,
https://github.com/gennaro-tedesco/nvim-peekup/,,
https://github.com/yorickpeterse/nvim-pqf/,,
https://github.com/jamestthompson3/nvim-remote-containers/,,
https://github.com/olrtg/nvim-rename-state/,,
https://github.com/duane9/nvim-rg/,,
https://github.com/chrisgrieser/nvim-rip-substitute/,,
https://github.com/chrisgrieser/nvim-scissors/,,
https://github.com/petertriho/nvim-scrollbar/,,
https://github.com/dstein64/nvim-scrollview/,,
https://github.com/s1n7ax/nvim-search-and-replace/,,
https://github.com/michaelrommel/nvim-silicon/,,
https://github.com/jbuck95/nvim-sioyek-highlights/,,
https://github.com/garymjr/nvim-snippets/,,
https://github.com/dcampos/nvim-snippy/,,
https://github.com/ishan9299/nvim-solarized-lua/,,
https://github.com/prismatic-koi/nvim-sops/,,
https://github.com/chrisgrieser/nvim-spider/,,
https://github.com/kylechui/nvim-surround/,main,
https://github.com/svermeulen/nvim-teal-maker/,,
https://github.com/norcalli/nvim-terminal.lua/,,
https://github.com/klen/nvim-test/,,
https://github.com/chrisgrieser/nvim-tinygit/,,
https://github.com/nvim-tree/nvim-tree.lua/,,
https://github.com/nvim-treesitter/nvim-treesitter/,,
https://github.com/nvim-treesitter/nvim-treesitter-context/,,
https://github.com/RRethy/nvim-treesitter-endwise/,,
https://github.com/nvim-treesitter/nvim-treesitter-locals/,,
https://github.com/theHamsta/nvim-treesitter-pairs/,,
https://github.com/eddiebergman/nvim-treesitter-pyfold/,,
https://github.com/nvim-treesitter/nvim-treesitter-refactor/,,
https://github.com/PaterJason/nvim-treesitter-sexp/,,
https://github.com/nvim-treesitter/nvim-treesitter-textobjects/,main,
https://github.com/nvim-treesitter/nvim-treesitter-textobjects/,master,nvim-treesitter-textobjects-legacy
https://github.com/RRethy/nvim-treesitter-textsubjects/,,
https://github.com/AckslD/nvim-trevJ.lua/,,
https://github.com/windwp/nvim-ts-autotag/,,
https://github.com/joosepalviste/nvim-ts-context-commentstring/,,
https://github.com/kevinhwang91/nvim-ufo/,,
https://github.com/samjwill/nvim-unception/,,
https://github.com/apyra/nvim-unity/,,
https://github.com/chrisgrieser/nvim-various-textobjs/,,
https://github.com/yioneko/nvim-vtsls/,,
https://github.com/AckslD/nvim-whichkey-setup.lua/,,
https://github.com/s1n7ax/nvim-window-picker/,,
https://github.com/roxma/nvim-yarp/,,
https://github.com/andersevenrud/nvim_context_vt/,,
https://github.com/neovim/nvimdev.nvim/,,
https://github.com/zbirenbaum/nvterm/,,
https://github.com/nvzone/menu/,,nvzone-menu
https://github.com/nvzone/minty/,,nvzone-minty
https://github.com/nvzone/typr/,,nvzone-typr
https://github.com/nvzone/volt/,,nvzone-volt
https://github.com/obsidian-nvim/obsidian.nvim/,,
https://github.com/tarides/ocaml.nvim/,,
https://github.com/nvimdev/oceanic-material/,,
https://github.com/mhartington/oceanic-next/,,
https://github.com/pwntester/octo.nvim/,,
https://github.com/refractalize/oil-git-status.nvim/,,