-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.xml
More file actions
1029 lines (881 loc) · 77.7 KB
/
index.xml
File metadata and controls
1029 lines (881 loc) · 77.7 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
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Dilip Chauhan on dilip chauhan</title>
<link>https://technicaldc.github.io/</link>
<description>Recent content in Dilip Chauhan on dilip chauhan</description>
<generator>Hugo -- gohugo.io</generator>
<language>en</language>
<copyright>Copyright 2025 - Dilip Chauhan</copyright>
<lastBuildDate>Sun, 21 Jan 2024 14:24:36 -0500</lastBuildDate><atom:link href="https://technicaldc.github.io/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>My new linux rice</title>
<link>https://technicaldc.github.io/videos/my-new-linux-rice/</link>
<pubDate>Mon, 23 Jun 2025 00:00:00 +0000</pubDate>
<guid>https://technicaldc.github.io/videos/my-new-linux-rice/</guid>
<description></description>
</item>
<item>
<title>Essential commandline tools for daily productivity</title>
<link>https://technicaldc.github.io/posts/essential-command-line-tools-for-daily-productivity/</link>
<pubDate>Thu, 27 Mar 2025 15:41:43 +0530</pubDate>
<guid>https://technicaldc.github.io/posts/essential-command-line-tools-for-daily-productivity/</guid>
<description><p>For as long as I’ve used Linux and spent time in the terminal, I’ve realized
one thing: the command line is a powerhouse of productivity. While GUI
applications have their place, nothing beats the speed, efficiency, and sheer
control that CLI tools provide. Over time, I’ve experimented with countless
terminal tools, but some have truly stood out and become essential to my
workflow.</p>
<p>If you live in the terminal like I do, you’ll love these tools. Let’s dive in!</p>
<hr>
<h2 class="relative group">neovim
<div id="neovim" class="anchor"></div>
<span
class="absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none">
<a class="text-primary-300 dark:text-neutral-700 !no-underline" href="#neovim" aria-label="Anchor">#</a>
</span>
</h2>
<p>I started with Vim like many others, fascinated by its modal editing and sheer
efficiency. But then came Neovim, and everything changed. Neovim takes Vim’s
legacy and modernizes it with:</p>
<ul>
<li><strong>Asynchronous Plugins &amp; LSP Support</strong> – Seamless auto-completion and real-time linting.</li>
<li><strong>Embedded Terminal Emulator</strong> – Run commands without switching windows.</li>
<li><strong>Lua-Based Configuration</strong> – More power and flexibility than Vimscript.</li>
</ul>
<p>If you love Vim but crave better extensibility and modern features, Neovim is a must-have.</p>
<p>🔹 <strong>My Workflow:</strong> I use Neovim as my primary code editor, writing scripts,
editing configs, and even drafting blog posts like this one. With plugins like
<code>telescope.nvim</code> and <code>lualine.nvim</code>, my setup feels snappy and efficient.</p>
<hr>
<h2 class="relative group">fzf
<div id="fzf" class="anchor"></div>
<span
class="absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none">
<a class="text-primary-300 dark:text-neutral-700 !no-underline" href="#fzf" aria-label="Anchor">#</a>
</span>
</h2>
<p>You know that frustrating moment when you need to find a file, but you can’t
remember the exact name? That’s where <code>fzf</code> comes in. It’s an interactive fuzzy
search tool that makes finding files, directories, and commands effortless.</p>
<h3 class="relative group">Why I Love It:
<div id="why-i-love-it" class="anchor"></div>
<span
class="absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none">
<a class="text-primary-300 dark:text-neutral-700 !no-underline" href="#why-i-love-it" aria-label="Anchor">#</a>
</span>
</h3>
<ul>
<li>Blazing fast fuzzy searching.</li>
<li>Works inside Vim, bash, and even scripts.</li>
<li>Integrates with <code>find</code>, <code>rg</code>, <code>fd</code>, <code>git</code>, and more.</li>
</ul>
<p>🔹 <strong>Example:</strong> Quickly locate files interactively:</p>
<div class="highlight-wrapper"><div class="highlight"><pre tabindex="0" class="chroma"><code class="language-sh" data-lang="sh"><span class="line"><span class="cl">find . -type f <span class="p">|</span> fzf</span></span></code></pre></div></div>
<p>I have <code>fzf</code> mapped in my shell to make directory navigation insanely fast.
Trust me, once you start using it, there’s no going back!</p>
<hr>
<h2 class="relative group">tmux
<div id="tmux" class="anchor"></div>
<span
class="absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none">
<a class="text-primary-300 dark:text-neutral-700 !no-underline" href="#tmux" aria-label="Anchor">#</a>
</span>
</h2>
<p>I used to open multiple terminal tabs and windows until I discovered <code>tmux</code>. It
changed how I work in the terminal forever. <code>tmux</code> allows you to manage
multiple terminal sessions inside a single window.</p>
<h3 class="relative group">Why It’s Essential:
<div id="why-its-essential" class="anchor"></div>
<span
class="absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none">
<a class="text-primary-300 dark:text-neutral-700 !no-underline" href="#why-its-essential" aria-label="Anchor">#</a>
</span>
</h3>
<ul>
<li><strong>Persistent Sessions</strong> – Never lose work due to accidental disconnections.</li>
<li><strong>Split Panes &amp; Windows</strong> – Organize multiple tasks efficiently.</li>
<li><strong>Highly Configurable</strong> – Customize keybindings, colors, and layouts.</li>
</ul>
<p>🔹 <strong>Example:</strong> Start a new session:</p>
<div class="highlight-wrapper"><div class="highlight"><pre tabindex="0" class="chroma"><code class="language-sh" data-lang="sh"><span class="line"><span class="cl">tmux new -s mysession</span></span></code></pre></div></div>
<p>Now, I can work on multiple projects without worrying about losing my place.</p>
<hr>
<h2 class="relative group">yazi
<div id="yazi" class="anchor"></div>
<span
class="absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none">
<a class="text-primary-300 dark:text-neutral-700 !no-underline" href="#yazi" aria-label="Anchor">#</a>
</span>
</h2>
<p>If you’ve ever used <code>ranger</code>, <code>lf</code>, or <code>nnn</code>, you’ll love <code>yazi</code>. It’s a
minimal, keyboard-driven file manager that feels like a dream to use.</p>
<h3 class="relative group">Why It’s a Game-Changer:
<div id="why-its-a-game-changer" class="anchor"></div>
<span
class="absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none">
<a class="text-primary-300 dark:text-neutral-700 !no-underline" href="#why-its-a-game-changer" aria-label="Anchor">#</a>
</span>
</h3>
<ul>
<li>Lightning-fast navigation.</li>
<li>Preview support for images, PDFs, and videos.</li>
<li>Lua-based customization for ultimate flexibility.</li>
</ul>
<p>🔹 <strong>How I Use It:</strong> I use <code>yazi</code> to quickly browse files, especially when
dealing with large projects. Its preview feature saves me from opening
unnecessary files.</p>
<hr>
<h2 class="relative group">lazygit
<div id="lazygit" class="anchor"></div>
<span
class="absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none">
<a class="text-primary-300 dark:text-neutral-700 !no-underline" href="#lazygit" aria-label="Anchor">#</a>
</span>
</h2>
<p>Git is powerful, but let’s be honest—it can be a pain to use from the command
line, especially when managing branches and resolving conflicts. <code>lazygit</code>
changes that with an intuitive and interactive Git UI for the terminal.</p>
<h3 class="relative group">Why You Need It:
<div id="why-you-need-it" class="anchor"></div>
<span
class="absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none">
<a class="text-primary-300 dark:text-neutral-700 !no-underline" href="#why-you-need-it" aria-label="Anchor">#</a>
</span>
</h3>
<ul>
<li>Effortless commit, push, pull, rebase, and stash operations.</li>
<li>Visual branch management and conflict resolution.</li>
<li>Lightweight and fast.</li>
</ul>
<p>🔹 <strong>Example:</strong> Launch <code>lazygit</code> inside a Git repo:</p>
<div class="highlight-wrapper"><div class="highlight"><pre tabindex="0" class="chroma"><code class="language-sh" data-lang="sh"><span class="line"><span class="cl">lazygit</span></span></code></pre></div></div>
<p>I rely on <code>lazygit</code> whenever I need to handle complex merges or review commits
without typing out long Git commands.</p>
<hr>
<h2 class="relative group">taskwarrior
<div id="taskwarrior" class="anchor"></div>
<span
class="absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none">
<a class="text-primary-300 dark:text-neutral-700 !no-underline" href="#taskwarrior" aria-label="Anchor">#</a>
</span>
</h2>
<p>Staying productive isn’t just about writing code—it’s about organizing your
work efficiently. <code>taskwarrior</code> is an advanced task manager for the command
line.</p>
<h3 class="relative group">Why I Use It:
<div id="why-i-use-it" class="anchor"></div>
<span
class="absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none">
<a class="text-primary-300 dark:text-neutral-700 !no-underline" href="#why-i-use-it" aria-label="Anchor">#</a>
</span>
</h3>
<ul>
<li>Prioritization and due dates keep me on track.</li>
<li>Recurring tasks and dependencies ensure nothing slips through the cracks.</li>
<li>Powerful filtering and custom reports.</li>
</ul>
<p>🔹 <strong>Example:</strong> Add a high-priority task:</p>
<div class="highlight-wrapper"><div class="highlight"><pre tabindex="0" class="chroma"><code class="language-sh" data-lang="sh"><span class="line"><span class="cl">task add <span class="s2">&#34;Write blog post&#34;</span> due:tomorrow priority:H</span></span></code></pre></div></div>
<p>I use <code>taskwarrior</code> to track my work and personal tasks without relying on GUI-based to-do apps.</p>
<hr>
<h2 class="relative group">zoxide
<div id="zoxide" class="anchor"></div>
<span
class="absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none">
<a class="text-primary-300 dark:text-neutral-700 !no-underline" href="#zoxide" aria-label="Anchor">#</a>
</span>
</h2>
<p>Typing <code>cd</code> repeatedly is inefficient, and that’s where <code>zoxide</code> shines. It
learns your frequently visited directories and lets you jump to them instantly.</p>
<p>🔹 <strong>Example:</strong> Quickly navigate to a frequently accessed directory:</p>
<div class="highlight-wrapper"><div class="highlight"><pre tabindex="0" class="chroma"><code class="language-sh" data-lang="sh"><span class="line"><span class="cl">z project</span></span></code></pre></div></div>
<p>This tool saves me so much time, eliminating the need to type long directory paths.</p>
<hr>
<h2 class="relative group">Wrapping Up
<div id="wrapping-up" class="anchor"></div>
<span
class="absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none">
<a class="text-primary-300 dark:text-neutral-700 !no-underline" href="#wrapping-up" aria-label="Anchor">#</a>
</span>
</h2>
<p>These tools have become an essential part of my daily workflow. Whether I’m
coding, managing files, or organizing tasks, they help me stay efficient and
focused. If you spend a lot of time in the terminal, I highly recommend giving
them a try.</p>
<p>💬 <strong>What are your favorite command-line tools? Let’s discuss in the comments!</strong></p>
</description>
</item>
<item>
<title>Hidden Gems: Lesser-Known Neovim Plugins You Should Try</title>
<link>https://technicaldc.github.io/posts/hidden-gems-lesser-known-neovim-plugins-you-should-try/</link>
<pubDate>Sun, 18 Aug 2024 23:24:43 +0530</pubDate>
<guid>https://technicaldc.github.io/posts/hidden-gems-lesser-known-neovim-plugins-you-should-try/</guid>
<description><p>Hello everyone, hoping everyone is doing great. In this post, I will be talking
about the top 10 neovim plugins which I used on daily basis. For this post, I am excluding
lsp and autocompletion plugins. This post will mainly focuses on the plugins improved the
daily workflow.</p>
<h2 class="relative group">yazi.nvim
<div id="yazinvim" class="anchor"></div>
<span
class="absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none">
<a class="text-primary-300 dark:text-neutral-700 !no-underline" href="#yazinvim" aria-label="Anchor">#</a>
</span>
</h2>
<p><a href="https://yazi-rs.github.io/" target="_blank">yasi</a> is terminal file manager of choice. Unlike other terminal file
manager like ranger and lf, yazi is written rust making it much faster compared to its
alternatives. So <a href="https://github.com/mikavilpas/yazi.nvim" target="_blank">yazi.nvim</a> allows to integrate
yazi with neovim.</p>
<div class="github-card-wrapper">
<a id="github-991fb51e3fea599be1d0086da10f03d6" target="_blank" href="https://github.com/mikavilpas/yazi.nvim" class="cursor-pointer">
<div
class="w-full md:w-auto p-0 m-0 border border-neutral-200 dark:border-neutral-700 border rounded-md shadow-2xl"><div class="w-full nozoom">
<img
src="https://opengraph.githubassets.com/0/mikavilpas/yazi.nvim"
alt="GitHub Repository Thumbnail"
class="nozoom mt-0 mb-0 w-full h-full object-cover">
</div><div class="w-full md:w-auto pt-3 p-5">
<div class="flex items-center">
<span class="text-2xl text-neutral-800 dark:text-neutral me-2">
<span class="relative block icon"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><path fill="currentColor" d="M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3zm44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z"/></svg>
</span>
</span>
<div
id="github-991fb51e3fea599be1d0086da10f03d6-full_name"
class="m-0 font-bold text-xl text-neutral-800 decoration-primary-500 hover:underline hover:underline-offset-2 dark:text-neutral">
mikavilpas/yazi.nvim
</div>
</div>
<p id="github-991fb51e3fea599be1d0086da10f03d6-description" class="m-0 mt-2 text-md text-neutral-800 dark:text-neutral">
A Neovim Plugin for the yazi terminal file manager
</p>
<div class="m-0 mt-2 flex items-center">
<span class="mr-1 inline-block h-3 w-3 rounded-full language-dot" data-language="Lua"></span>
<div class="m-0 mr-5 text-md text-neutral-800 dark:text-neutral">
Lua
</div>
<span class="text-md mr-1 text-neutral-800 dark:text-neutral">
<span class="relative block icon"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><path fill="currentColor" d="M287.9 0C297.1 0 305.5 5.25 309.5 13.52L378.1 154.8L531.4 177.5C540.4 178.8 547.8 185.1 550.7 193.7C553.5 202.4 551.2 211.9 544.8 218.2L433.6 328.4L459.9 483.9C461.4 492.9 457.7 502.1 450.2 507.4C442.8 512.7 432.1 513.4 424.9 509.1L287.9 435.9L150.1 509.1C142.9 513.4 133.1 512.7 125.6 507.4C118.2 502.1 114.5 492.9 115.1 483.9L142.2 328.4L31.11 218.2C24.65 211.9 22.36 202.4 25.2 193.7C28.03 185.1 35.5 178.8 44.49 177.5L197.7 154.8L266.3 13.52C270.4 5.249 278.7 0 287.9 0L287.9 0zM287.9 78.95L235.4 187.2C231.9 194.3 225.1 199.3 217.3 200.5L98.98 217.9L184.9 303C190.4 308.5 192.9 316.4 191.6 324.1L171.4 443.7L276.6 387.5C283.7 383.7 292.2 383.7 299.2 387.5L404.4 443.7L384.2 324.1C382.9 316.4 385.5 308.5 391 303L476.9 217.9L358.6 200.5C350.7 199.3 343.9 194.3 340.5 187.2L287.9 78.95z"/></svg></span>
</span>
<div id="github-991fb51e3fea599be1d0086da10f03d6-stargazers" class="m-0 mr-5 text-md text-neutral-800 dark:text-neutral">
1416
</div>
<span class="text-md mr-1 text-neutral-800 dark:text-neutral">
<span class="relative block icon"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M80 104c13.3 0 24-10.7 24-24s-10.7-24-24-24S56 66.7 56 80s10.7 24 24 24zm80-24c0 32.8-19.7 61-48 73.3V192c0 17.7 14.3 32 32 32H304c17.7 0 32-14.3 32-32V153.3C307.7 141 288 112.8 288 80c0-44.2 35.8-80 80-80s80 35.8 80 80c0 32.8-19.7 61-48 73.3V192c0 53-43 96-96 96H256v70.7c28.3 12.3 48 40.5 48 73.3c0 44.2-35.8 80-80 80s-80-35.8-80-80c0-32.8 19.7-61 48-73.3V288H144c-53 0-96-43-96-96V153.3C19.7 141 0 112.8 0 80C0 35.8 35.8 0 80 0s80 35.8 80 80zm208 24c13.3 0 24-10.7 24-24s-10.7-24-24-24s-24 10.7-24 24s10.7 24 24 24zM248 432c0-13.3-10.7-24-24-24s-24 10.7-24 24s10.7 24 24 24s24-10.7 24-24z"/></svg></span>
</span>
<div id="github-991fb51e3fea599be1d0086da10f03d6-forks" class="m-0 mr-5 text-md text-neutral-800 dark:text-neutral">
45
</div>
</div>
</div>
</div>
<script
async
type="text/javascript"
src="https://technicaldc.github.io/js/fetch-repo.min.dc5533c50cefd50405344b235937142271f26229fe39cbee27fd4960e8bb897a0beebfad77a1091ca91cd0d1fb14e70fc37cc114dd9674fb2c32e0ab512ec8a4.js"
integrity="sha512-3FUzxQzv1QQFNEsjWTcUInHyYin&#43;OcvuJ/1JYOi7iXoL7r&#43;td6EJHKkc0NH7FOcPw3zBFN2WdPssMuCrUS7IpA=="
data-repo-url="https://api.github.com/repos/mikavilpas/yazi.nvim"
data-repo-id="github-991fb51e3fea599be1d0086da10f03d6"></script>
</a>
</div>
<h2 class="relative group">lazygit.nvim
<div id="lazygitnvim" class="anchor"></div>
<span
class="absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none">
<a class="text-primary-300 dark:text-neutral-700 !no-underline" href="#lazygitnvim" aria-label="Anchor">#</a>
</span>
</h2>
<p><a href="https://github.com/kdheepak/lazygit.nvim" target="_blank">lazygit.nvim</a> is the wrapper plugins for <a href="https://github.com/jesseduffield/lazygit" target="_blank">lazygit</a> allowing the user to
perform all the git operation right from the neovim.</p>
<div class="github-card-wrapper">
<a id="github-2c7dc5f7cbbb4ec37195f5db157eaa6c" target="_blank" href="https://github.com/kdheepak/lazygit.nvim" class="cursor-pointer">
<div
class="w-full md:w-auto p-0 m-0 border border-neutral-200 dark:border-neutral-700 border rounded-md shadow-2xl"><div class="w-full nozoom">
<img
src="https://opengraph.githubassets.com/0/kdheepak/lazygit.nvim"
alt="GitHub Repository Thumbnail"
class="nozoom mt-0 mb-0 w-full h-full object-cover">
</div><div class="w-full md:w-auto pt-3 p-5">
<div class="flex items-center">
<span class="text-2xl text-neutral-800 dark:text-neutral me-2">
<span class="relative block icon"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><path fill="currentColor" d="M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3zm44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z"/></svg>
</span>
</span>
<div
id="github-2c7dc5f7cbbb4ec37195f5db157eaa6c-full_name"
class="m-0 font-bold text-xl text-neutral-800 decoration-primary-500 hover:underline hover:underline-offset-2 dark:text-neutral">
kdheepak/lazygit.nvim
</div>
</div>
<p id="github-2c7dc5f7cbbb4ec37195f5db157eaa6c-description" class="m-0 mt-2 text-md text-neutral-800 dark:text-neutral">
Plugin for calling lazygit from within neovim.
</p>
<div class="m-0 mt-2 flex items-center">
<span class="mr-1 inline-block h-3 w-3 rounded-full language-dot" data-language="Lua"></span>
<div class="m-0 mr-5 text-md text-neutral-800 dark:text-neutral">
Lua
</div>
<span class="text-md mr-1 text-neutral-800 dark:text-neutral">
<span class="relative block icon"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><path fill="currentColor" d="M287.9 0C297.1 0 305.5 5.25 309.5 13.52L378.1 154.8L531.4 177.5C540.4 178.8 547.8 185.1 550.7 193.7C553.5 202.4 551.2 211.9 544.8 218.2L433.6 328.4L459.9 483.9C461.4 492.9 457.7 502.1 450.2 507.4C442.8 512.7 432.1 513.4 424.9 509.1L287.9 435.9L150.1 509.1C142.9 513.4 133.1 512.7 125.6 507.4C118.2 502.1 114.5 492.9 115.1 483.9L142.2 328.4L31.11 218.2C24.65 211.9 22.36 202.4 25.2 193.7C28.03 185.1 35.5 178.8 44.49 177.5L197.7 154.8L266.3 13.52C270.4 5.249 278.7 0 287.9 0L287.9 0zM287.9 78.95L235.4 187.2C231.9 194.3 225.1 199.3 217.3 200.5L98.98 217.9L184.9 303C190.4 308.5 192.9 316.4 191.6 324.1L171.4 443.7L276.6 387.5C283.7 383.7 292.2 383.7 299.2 387.5L404.4 443.7L384.2 324.1C382.9 316.4 385.5 308.5 391 303L476.9 217.9L358.6 200.5C350.7 199.3 343.9 194.3 340.5 187.2L287.9 78.95z"/></svg></span>
</span>
<div id="github-2c7dc5f7cbbb4ec37195f5db157eaa6c-stargazers" class="m-0 mr-5 text-md text-neutral-800 dark:text-neutral">
2108
</div>
<span class="text-md mr-1 text-neutral-800 dark:text-neutral">
<span class="relative block icon"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M80 104c13.3 0 24-10.7 24-24s-10.7-24-24-24S56 66.7 56 80s10.7 24 24 24zm80-24c0 32.8-19.7 61-48 73.3V192c0 17.7 14.3 32 32 32H304c17.7 0 32-14.3 32-32V153.3C307.7 141 288 112.8 288 80c0-44.2 35.8-80 80-80s80 35.8 80 80c0 32.8-19.7 61-48 73.3V192c0 53-43 96-96 96H256v70.7c28.3 12.3 48 40.5 48 73.3c0 44.2-35.8 80-80 80s-80-35.8-80-80c0-32.8 19.7-61 48-73.3V288H144c-53 0-96-43-96-96V153.3C19.7 141 0 112.8 0 80C0 35.8 35.8 0 80 0s80 35.8 80 80zm208 24c13.3 0 24-10.7 24-24s-10.7-24-24-24s-24 10.7-24 24s10.7 24 24 24zM248 432c0-13.3-10.7-24-24-24s-24 10.7-24 24s10.7 24 24 24s24-10.7 24-24z"/></svg></span>
</span>
<div id="github-2c7dc5f7cbbb4ec37195f5db157eaa6c-forks" class="m-0 mr-5 text-md text-neutral-800 dark:text-neutral">
83
</div>
</div>
</div>
</div>
<script
async
type="text/javascript"
src="https://technicaldc.github.io/js/fetch-repo.min.dc5533c50cefd50405344b235937142271f26229fe39cbee27fd4960e8bb897a0beebfad77a1091ca91cd0d1fb14e70fc37cc114dd9674fb2c32e0ab512ec8a4.js"
integrity="sha512-3FUzxQzv1QQFNEsjWTcUInHyYin&#43;OcvuJ/1JYOi7iXoL7r&#43;td6EJHKkc0NH7FOcPw3zBFN2WdPssMuCrUS7IpA=="
data-repo-url="https://api.github.com/repos/kdheepak/lazygit.nvim"
data-repo-id="github-2c7dc5f7cbbb4ec37195f5db157eaa6c"></script>
</a>
</div>
<h2 class="relative group">telescope.nvim
<div id="telescopenvim" class="anchor"></div>
<span
class="absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none">
<a class="text-primary-300 dark:text-neutral-700 !no-underline" href="#telescopenvim" aria-label="Anchor">#</a>
</span>
</h2>
<p><a href="https://github.com/nvim-telescope/telescope.nvim" target="_blank">telescope.nvim</a> is a highly extendable fuzzy finder over lists. Built on the
latest awesome features from neovim core. Telescope is centered around
modularity, allowing other plugins to utilize the telescope as their UI for
inputs.</p>
<div class="github-card-wrapper">
<a id="github-4ccc3f55f9b75e85a1d6553f8449e5b4" target="_blank" href="https://github.com/nvim-telescope/telescope.nvim" class="cursor-pointer">
<div
class="w-full md:w-auto p-0 m-0 border border-neutral-200 dark:border-neutral-700 border rounded-md shadow-2xl"><div class="w-full nozoom">
<img
src="https://opengraph.githubassets.com/0/nvim-telescope/telescope.nvim"
alt="GitHub Repository Thumbnail"
class="nozoom mt-0 mb-0 w-full h-full object-cover">
</div><div class="w-full md:w-auto pt-3 p-5">
<div class="flex items-center">
<span class="text-2xl text-neutral-800 dark:text-neutral me-2">
<span class="relative block icon"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><path fill="currentColor" d="M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3zm44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z"/></svg>
</span>
</span>
<div
id="github-4ccc3f55f9b75e85a1d6553f8449e5b4-full_name"
class="m-0 font-bold text-xl text-neutral-800 decoration-primary-500 hover:underline hover:underline-offset-2 dark:text-neutral">
nvim-telescope/telescope.nvim
</div>
</div>
<p id="github-4ccc3f55f9b75e85a1d6553f8449e5b4-description" class="m-0 mt-2 text-md text-neutral-800 dark:text-neutral">
Find, Filter, Preview, Pick. All lua, all the time.
</p>
<div class="m-0 mt-2 flex items-center">
<span class="mr-1 inline-block h-3 w-3 rounded-full language-dot" data-language="Lua"></span>
<div class="m-0 mr-5 text-md text-neutral-800 dark:text-neutral">
Lua
</div>
<span class="text-md mr-1 text-neutral-800 dark:text-neutral">
<span class="relative block icon"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><path fill="currentColor" d="M287.9 0C297.1 0 305.5 5.25 309.5 13.52L378.1 154.8L531.4 177.5C540.4 178.8 547.8 185.1 550.7 193.7C553.5 202.4 551.2 211.9 544.8 218.2L433.6 328.4L459.9 483.9C461.4 492.9 457.7 502.1 450.2 507.4C442.8 512.7 432.1 513.4 424.9 509.1L287.9 435.9L150.1 509.1C142.9 513.4 133.1 512.7 125.6 507.4C118.2 502.1 114.5 492.9 115.1 483.9L142.2 328.4L31.11 218.2C24.65 211.9 22.36 202.4 25.2 193.7C28.03 185.1 35.5 178.8 44.49 177.5L197.7 154.8L266.3 13.52C270.4 5.249 278.7 0 287.9 0L287.9 0zM287.9 78.95L235.4 187.2C231.9 194.3 225.1 199.3 217.3 200.5L98.98 217.9L184.9 303C190.4 308.5 192.9 316.4 191.6 324.1L171.4 443.7L276.6 387.5C283.7 383.7 292.2 383.7 299.2 387.5L404.4 443.7L384.2 324.1C382.9 316.4 385.5 308.5 391 303L476.9 217.9L358.6 200.5C350.7 199.3 343.9 194.3 340.5 187.2L287.9 78.95z"/></svg></span>
</span>
<div id="github-4ccc3f55f9b75e85a1d6553f8449e5b4-stargazers" class="m-0 mr-5 text-md text-neutral-800 dark:text-neutral">
18700
</div>
<span class="text-md mr-1 text-neutral-800 dark:text-neutral">
<span class="relative block icon"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M80 104c13.3 0 24-10.7 24-24s-10.7-24-24-24S56 66.7 56 80s10.7 24 24 24zm80-24c0 32.8-19.7 61-48 73.3V192c0 17.7 14.3 32 32 32H304c17.7 0 32-14.3 32-32V153.3C307.7 141 288 112.8 288 80c0-44.2 35.8-80 80-80s80 35.8 80 80c0 32.8-19.7 61-48 73.3V192c0 53-43 96-96 96H256v70.7c28.3 12.3 48 40.5 48 73.3c0 44.2-35.8 80-80 80s-80-35.8-80-80c0-32.8 19.7-61 48-73.3V288H144c-53 0-96-43-96-96V153.3C19.7 141 0 112.8 0 80C0 35.8 35.8 0 80 0s80 35.8 80 80zm208 24c13.3 0 24-10.7 24-24s-10.7-24-24-24s-24 10.7-24 24s10.7 24 24 24zM248 432c0-13.3-10.7-24-24-24s-24 10.7-24 24s10.7 24 24 24s24-10.7 24-24z"/></svg></span>
</span>
<div id="github-4ccc3f55f9b75e85a1d6553f8449e5b4-forks" class="m-0 mr-5 text-md text-neutral-800 dark:text-neutral">
933
</div>
</div>
</div>
</div>
<script
async
type="text/javascript"
src="https://technicaldc.github.io/js/fetch-repo.min.dc5533c50cefd50405344b235937142271f26229fe39cbee27fd4960e8bb897a0beebfad77a1091ca91cd0d1fb14e70fc37cc114dd9674fb2c32e0ab512ec8a4.js"
integrity="sha512-3FUzxQzv1QQFNEsjWTcUInHyYin&#43;OcvuJ/1JYOi7iXoL7r&#43;td6EJHKkc0NH7FOcPw3zBFN2WdPssMuCrUS7IpA=="
data-repo-url="https://api.github.com/repos/nvim-telescope/telescope.nvim"
data-repo-id="github-4ccc3f55f9b75e85a1d6553f8449e5b4"></script>
</a>
</div>
<h2 class="relative group">neorg
<div id="neorg" class="anchor"></div>
<span
class="absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none">
<a class="text-primary-300 dark:text-neutral-700 !no-underline" href="#neorg" aria-label="Anchor">#</a>
</span>
</h2>
<p>When it comes to note taking, my previous choice was vimwiki. However, since I started
using neovim, I was looking for better alternatives and this is when I came across <a href="https://github.com/nvim-neorg/neorg" target="_blank">neorg</a>
on reddit. Neorg is an all-encompassing tool based around structured note
taking, project and task management, time tracking, slideshows, writing typeset
documents and much more. The premise is that all of these features are built on
top of a single base file format (<code>.norg</code>), which the user only has to learn once
to gain access to all of Neorg&rsquo;s functionality.</p>
<div class="github-card-wrapper">
<a id="github-66a92ee53014839ccc0d6f8d2648f8e7" target="_blank" href="https://github.com/nvim-neorg/neorg" class="cursor-pointer">
<div
class="w-full md:w-auto p-0 m-0 border border-neutral-200 dark:border-neutral-700 border rounded-md shadow-2xl"><div class="w-full nozoom">
<img
src="https://opengraph.githubassets.com/0/nvim-neorg/neorg"
alt="GitHub Repository Thumbnail"
class="nozoom mt-0 mb-0 w-full h-full object-cover">
</div><div class="w-full md:w-auto pt-3 p-5">
<div class="flex items-center">
<span class="text-2xl text-neutral-800 dark:text-neutral me-2">
<span class="relative block icon"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><path fill="currentColor" d="M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3zm44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z"/></svg>
</span>
</span>
<div
id="github-66a92ee53014839ccc0d6f8d2648f8e7-full_name"
class="m-0 font-bold text-xl text-neutral-800 decoration-primary-500 hover:underline hover:underline-offset-2 dark:text-neutral">
nvim-neorg/neorg
</div>
</div>
<p id="github-66a92ee53014839ccc0d6f8d2648f8e7-description" class="m-0 mt-2 text-md text-neutral-800 dark:text-neutral">
Modernity meets insane extensibility. The future of organizing your life in Neovim.
</p>
<div class="m-0 mt-2 flex items-center">
<span class="mr-1 inline-block h-3 w-3 rounded-full language-dot" data-language="Lua"></span>
<div class="m-0 mr-5 text-md text-neutral-800 dark:text-neutral">
Lua
</div>
<span class="text-md mr-1 text-neutral-800 dark:text-neutral">
<span class="relative block icon"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><path fill="currentColor" d="M287.9 0C297.1 0 305.5 5.25 309.5 13.52L378.1 154.8L531.4 177.5C540.4 178.8 547.8 185.1 550.7 193.7C553.5 202.4 551.2 211.9 544.8 218.2L433.6 328.4L459.9 483.9C461.4 492.9 457.7 502.1 450.2 507.4C442.8 512.7 432.1 513.4 424.9 509.1L287.9 435.9L150.1 509.1C142.9 513.4 133.1 512.7 125.6 507.4C118.2 502.1 114.5 492.9 115.1 483.9L142.2 328.4L31.11 218.2C24.65 211.9 22.36 202.4 25.2 193.7C28.03 185.1 35.5 178.8 44.49 177.5L197.7 154.8L266.3 13.52C270.4 5.249 278.7 0 287.9 0L287.9 0zM287.9 78.95L235.4 187.2C231.9 194.3 225.1 199.3 217.3 200.5L98.98 217.9L184.9 303C190.4 308.5 192.9 316.4 191.6 324.1L171.4 443.7L276.6 387.5C283.7 383.7 292.2 383.7 299.2 387.5L404.4 443.7L384.2 324.1C382.9 316.4 385.5 308.5 391 303L476.9 217.9L358.6 200.5C350.7 199.3 343.9 194.3 340.5 187.2L287.9 78.95z"/></svg></span>
</span>
<div id="github-66a92ee53014839ccc0d6f8d2648f8e7-stargazers" class="m-0 mr-5 text-md text-neutral-800 dark:text-neutral">
7134
</div>
<span class="text-md mr-1 text-neutral-800 dark:text-neutral">
<span class="relative block icon"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M80 104c13.3 0 24-10.7 24-24s-10.7-24-24-24S56 66.7 56 80s10.7 24 24 24zm80-24c0 32.8-19.7 61-48 73.3V192c0 17.7 14.3 32 32 32H304c17.7 0 32-14.3 32-32V153.3C307.7 141 288 112.8 288 80c0-44.2 35.8-80 80-80s80 35.8 80 80c0 32.8-19.7 61-48 73.3V192c0 53-43 96-96 96H256v70.7c28.3 12.3 48 40.5 48 73.3c0 44.2-35.8 80-80 80s-80-35.8-80-80c0-32.8 19.7-61 48-73.3V288H144c-53 0-96-43-96-96V153.3C19.7 141 0 112.8 0 80C0 35.8 35.8 0 80 0s80 35.8 80 80zm208 24c13.3 0 24-10.7 24-24s-10.7-24-24-24s-24 10.7-24 24s10.7 24 24 24zM248 432c0-13.3-10.7-24-24-24s-24 10.7-24 24s10.7 24 24 24s24-10.7 24-24z"/></svg></span>
</span>
<div id="github-66a92ee53014839ccc0d6f8d2648f8e7-forks" class="m-0 mr-5 text-md text-neutral-800 dark:text-neutral">
234
</div>
</div>
</div>
</div>
<script
async
type="text/javascript"
src="https://technicaldc.github.io/js/fetch-repo.min.dc5533c50cefd50405344b235937142271f26229fe39cbee27fd4960e8bb897a0beebfad77a1091ca91cd0d1fb14e70fc37cc114dd9674fb2c32e0ab512ec8a4.js"
integrity="sha512-3FUzxQzv1QQFNEsjWTcUInHyYin&#43;OcvuJ/1JYOi7iXoL7r&#43;td6EJHKkc0NH7FOcPw3zBFN2WdPssMuCrUS7IpA=="
data-repo-url="https://api.github.com/repos/nvim-neorg/neorg"
data-repo-id="github-66a92ee53014839ccc0d6f8d2648f8e7"></script>
</a>
</div>
<h2 class="relative group">undotree
<div id="undotree" class="anchor"></div>
<span
class="absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none">
<a class="text-primary-300 dark:text-neutral-700 !no-underline" href="#undotree" aria-label="Anchor">#</a>
</span>
</h2>
<p>Being developer, making changes in the program is quite daily routine and after a lots
of changes it is hard to keep track of it. This is where undotree comes into picture.
<a href="https://github.com/mbbill/undotree" target="_blank">Undotree</a> visualizes the undo history and makes it easy to browse and switch
between different undo branches. They&rsquo;re a feature of Vim that allow you to go
back to a prior state even after it has been overwritten by later edits.</p>
<div class="github-card-wrapper">
<a id="github-2090cb9d60599f27c5975c3a87dc9699" target="_blank" href="https://github.com/mbbill/undotree" class="cursor-pointer">
<div
class="w-full md:w-auto p-0 m-0 border border-neutral-200 dark:border-neutral-700 border rounded-md shadow-2xl"><div class="w-full nozoom">
<img
src="https://opengraph.githubassets.com/0/mbbill/undotree"
alt="GitHub Repository Thumbnail"
class="nozoom mt-0 mb-0 w-full h-full object-cover">
</div><div class="w-full md:w-auto pt-3 p-5">
<div class="flex items-center">
<span class="text-2xl text-neutral-800 dark:text-neutral me-2">
<span class="relative block icon"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><path fill="currentColor" d="M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3zm44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z"/></svg>
</span>
</span>
<div
id="github-2090cb9d60599f27c5975c3a87dc9699-full_name"
class="m-0 font-bold text-xl text-neutral-800 decoration-primary-500 hover:underline hover:underline-offset-2 dark:text-neutral">
mbbill/undotree
</div>
</div>
<p id="github-2090cb9d60599f27c5975c3a87dc9699-description" class="m-0 mt-2 text-md text-neutral-800 dark:text-neutral">
The undo history visualizer for VIM
</p>
<div class="m-0 mt-2 flex items-center">
<span class="mr-1 inline-block h-3 w-3 rounded-full language-dot" data-language="Vim Script"></span>
<div class="m-0 mr-5 text-md text-neutral-800 dark:text-neutral">
Vim Script
</div>
<span class="text-md mr-1 text-neutral-800 dark:text-neutral">
<span class="relative block icon"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><path fill="currentColor" d="M287.9 0C297.1 0 305.5 5.25 309.5 13.52L378.1 154.8L531.4 177.5C540.4 178.8 547.8 185.1 550.7 193.7C553.5 202.4 551.2 211.9 544.8 218.2L433.6 328.4L459.9 483.9C461.4 492.9 457.7 502.1 450.2 507.4C442.8 512.7 432.1 513.4 424.9 509.1L287.9 435.9L150.1 509.1C142.9 513.4 133.1 512.7 125.6 507.4C118.2 502.1 114.5 492.9 115.1 483.9L142.2 328.4L31.11 218.2C24.65 211.9 22.36 202.4 25.2 193.7C28.03 185.1 35.5 178.8 44.49 177.5L197.7 154.8L266.3 13.52C270.4 5.249 278.7 0 287.9 0L287.9 0zM287.9 78.95L235.4 187.2C231.9 194.3 225.1 199.3 217.3 200.5L98.98 217.9L184.9 303C190.4 308.5 192.9 316.4 191.6 324.1L171.4 443.7L276.6 387.5C283.7 383.7 292.2 383.7 299.2 387.5L404.4 443.7L384.2 324.1C382.9 316.4 385.5 308.5 391 303L476.9 217.9L358.6 200.5C350.7 199.3 343.9 194.3 340.5 187.2L287.9 78.95z"/></svg></span>
</span>
<div id="github-2090cb9d60599f27c5975c3a87dc9699-stargazers" class="m-0 mr-5 text-md text-neutral-800 dark:text-neutral">
4451
</div>
<span class="text-md mr-1 text-neutral-800 dark:text-neutral">
<span class="relative block icon"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M80 104c13.3 0 24-10.7 24-24s-10.7-24-24-24S56 66.7 56 80s10.7 24 24 24zm80-24c0 32.8-19.7 61-48 73.3V192c0 17.7 14.3 32 32 32H304c17.7 0 32-14.3 32-32V153.3C307.7 141 288 112.8 288 80c0-44.2 35.8-80 80-80s80 35.8 80 80c0 32.8-19.7 61-48 73.3V192c0 53-43 96-96 96H256v70.7c28.3 12.3 48 40.5 48 73.3c0 44.2-35.8 80-80 80s-80-35.8-80-80c0-32.8 19.7-61 48-73.3V288H144c-53 0-96-43-96-96V153.3C19.7 141 0 112.8 0 80C0 35.8 35.8 0 80 0s80 35.8 80 80zm208 24c13.3 0 24-10.7 24-24s-10.7-24-24-24s-24 10.7-24 24s10.7 24 24 24zM248 432c0-13.3-10.7-24-24-24s-24 10.7-24 24s10.7 24 24 24s24-10.7 24-24z"/></svg></span>
</span>
<div id="github-2090cb9d60599f27c5975c3a87dc9699-forks" class="m-0 mr-5 text-md text-neutral-800 dark:text-neutral">
115
</div>
</div>
</div>
</div>
<script
async
type="text/javascript"
src="https://technicaldc.github.io/js/fetch-repo.min.dc5533c50cefd50405344b235937142271f26229fe39cbee27fd4960e8bb897a0beebfad77a1091ca91cd0d1fb14e70fc37cc114dd9674fb2c32e0ab512ec8a4.js"
integrity="sha512-3FUzxQzv1QQFNEsjWTcUInHyYin&#43;OcvuJ/1JYOi7iXoL7r&#43;td6EJHKkc0NH7FOcPw3zBFN2WdPssMuCrUS7IpA=="
data-repo-url="https://api.github.com/repos/mbbill/undotree"
data-repo-id="github-2090cb9d60599f27c5975c3a87dc9699"></script>
</a>
</div>
<h2 class="relative group">nvim-surround
<div id="nvim-surround" class="anchor"></div>
<span
class="absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none">
<a class="text-primary-300 dark:text-neutral-700 !no-underline" href="#nvim-surround" aria-label="Anchor">#</a>
</span>
</h2>
<p>Surround selections, stylishly :smiling_face_with_sunglasses: Yes, this is the line you will
see on its github readme. <a href="https://github.com/kylechui/nvim-surround" target="_blank">nvim-surround</a> does really
makes working with around characters like <code>([{'&quot;</code> buttery smooth.</p>
<div class="github-card-wrapper">
<a id="github-11c82d94d15588320c97b3cf62deadd2" target="_blank" href="https://github.com/kylechui/nvim-surround" class="cursor-pointer">
<div
class="w-full md:w-auto p-0 m-0 border border-neutral-200 dark:border-neutral-700 border rounded-md shadow-2xl"><div class="w-full nozoom">
<img
src="https://opengraph.githubassets.com/0/kylechui/nvim-surround"
alt="GitHub Repository Thumbnail"
class="nozoom mt-0 mb-0 w-full h-full object-cover">
</div><div class="w-full md:w-auto pt-3 p-5">
<div class="flex items-center">
<span class="text-2xl text-neutral-800 dark:text-neutral me-2">
<span class="relative block icon"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><path fill="currentColor" d="M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3zm44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z"/></svg>
</span>
</span>
<div
id="github-11c82d94d15588320c97b3cf62deadd2-full_name"
class="m-0 font-bold text-xl text-neutral-800 decoration-primary-500 hover:underline hover:underline-offset-2 dark:text-neutral">
kylechui/nvim-surround
</div>
</div>
<p id="github-11c82d94d15588320c97b3cf62deadd2-description" class="m-0 mt-2 text-md text-neutral-800 dark:text-neutral">
Add/change/delete surrounding delimiter pairs with ease. Written with &#x2764;&#xfe0f; in Lua.
</p>
<div class="m-0 mt-2 flex items-center">
<span class="mr-1 inline-block h-3 w-3 rounded-full language-dot" data-language="Lua"></span>
<div class="m-0 mr-5 text-md text-neutral-800 dark:text-neutral">
Lua
</div>
<span class="text-md mr-1 text-neutral-800 dark:text-neutral">
<span class="relative block icon"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><path fill="currentColor" d="M287.9 0C297.1 0 305.5 5.25 309.5 13.52L378.1 154.8L531.4 177.5C540.4 178.8 547.8 185.1 550.7 193.7C553.5 202.4 551.2 211.9 544.8 218.2L433.6 328.4L459.9 483.9C461.4 492.9 457.7 502.1 450.2 507.4C442.8 512.7 432.1 513.4 424.9 509.1L287.9 435.9L150.1 509.1C142.9 513.4 133.1 512.7 125.6 507.4C118.2 502.1 114.5 492.9 115.1 483.9L142.2 328.4L31.11 218.2C24.65 211.9 22.36 202.4 25.2 193.7C28.03 185.1 35.5 178.8 44.49 177.5L197.7 154.8L266.3 13.52C270.4 5.249 278.7 0 287.9 0L287.9 0zM287.9 78.95L235.4 187.2C231.9 194.3 225.1 199.3 217.3 200.5L98.98 217.9L184.9 303C190.4 308.5 192.9 316.4 191.6 324.1L171.4 443.7L276.6 387.5C283.7 383.7 292.2 383.7 299.2 387.5L404.4 443.7L384.2 324.1C382.9 316.4 385.5 308.5 391 303L476.9 217.9L358.6 200.5C350.7 199.3 343.9 194.3 340.5 187.2L287.9 78.95z"/></svg></span>
</span>
<div id="github-11c82d94d15588320c97b3cf62deadd2-stargazers" class="m-0 mr-5 text-md text-neutral-800 dark:text-neutral">
4023
</div>
<span class="text-md mr-1 text-neutral-800 dark:text-neutral">
<span class="relative block icon"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M80 104c13.3 0 24-10.7 24-24s-10.7-24-24-24S56 66.7 56 80s10.7 24 24 24zm80-24c0 32.8-19.7 61-48 73.3V192c0 17.7 14.3 32 32 32H304c17.7 0 32-14.3 32-32V153.3C307.7 141 288 112.8 288 80c0-44.2 35.8-80 80-80s80 35.8 80 80c0 32.8-19.7 61-48 73.3V192c0 53-43 96-96 96H256v70.7c28.3 12.3 48 40.5 48 73.3c0 44.2-35.8 80-80 80s-80-35.8-80-80c0-32.8 19.7-61 48-73.3V288H144c-53 0-96-43-96-96V153.3C19.7 141 0 112.8 0 80C0 35.8 35.8 0 80 0s80 35.8 80 80zm208 24c13.3 0 24-10.7 24-24s-10.7-24-24-24s-24 10.7-24 24s10.7 24 24 24zM248 432c0-13.3-10.7-24-24-24s-24 10.7-24 24s10.7 24 24 24s24-10.7 24-24z"/></svg></span>
</span>
<div id="github-11c82d94d15588320c97b3cf62deadd2-forks" class="m-0 mr-5 text-md text-neutral-800 dark:text-neutral">
71
</div>
</div>
</div>
</div>
<script
async
type="text/javascript"
src="https://technicaldc.github.io/js/fetch-repo.min.dc5533c50cefd50405344b235937142271f26229fe39cbee27fd4960e8bb897a0beebfad77a1091ca91cd0d1fb14e70fc37cc114dd9674fb2c32e0ab512ec8a4.js"
integrity="sha512-3FUzxQzv1QQFNEsjWTcUInHyYin&#43;OcvuJ/1JYOi7iXoL7r&#43;td6EJHKkc0NH7FOcPw3zBFN2WdPssMuCrUS7IpA=="
data-repo-url="https://api.github.com/repos/kylechui/nvim-surround"
data-repo-id="github-11c82d94d15588320c97b3cf62deadd2"></script>
</a>
</div>
<h2 class="relative group">git-worktree.nvim
<div id="git-worktreenvim" class="anchor"></div>
<span
class="absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none">
<a class="text-primary-300 dark:text-neutral-700 !no-underline" href="#git-worktreenvim" aria-label="Anchor">#</a>
</span>
</h2>
<p>Git worktree is the feature of git which allows you to work with multiple
worktrees (branches) simultaneously.
<a href="https://github.com/ThePrimeagen/git-worktree.nvim" target="_blank">git-worktree.nvim</a> is a
simple wrapper around git worktree operations, create, switch, and delete.</p>
<div class="github-card-wrapper">
<a id="github-963a2ba80ea337d0717624382a2af913" target="_blank" href="https://github.com/ThePrimeagen/git-worktree.nvim" class="cursor-pointer">
<div
class="w-full md:w-auto p-0 m-0 border border-neutral-200 dark:border-neutral-700 border rounded-md shadow-2xl"><div class="w-full nozoom">
<img
src="https://opengraph.githubassets.com/0/ThePrimeagen/git-worktree.nvim"
alt="GitHub Repository Thumbnail"
class="nozoom mt-0 mb-0 w-full h-full object-cover">
</div><div class="w-full md:w-auto pt-3 p-5">
<div class="flex items-center">
<span class="text-2xl text-neutral-800 dark:text-neutral me-2">
<span class="relative block icon"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><path fill="currentColor" d="M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3zm44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z"/></svg>
</span>
</span>
<div
id="github-963a2ba80ea337d0717624382a2af913-full_name"
class="m-0 font-bold text-xl text-neutral-800 decoration-primary-500 hover:underline hover:underline-offset-2 dark:text-neutral">
ThePrimeagen/git-worktree.nvim
</div>
</div>
<p id="github-963a2ba80ea337d0717624382a2af913-description" class="m-0 mt-2 text-md text-neutral-800 dark:text-neutral">
</p>
<div class="m-0 mt-2 flex items-center">
<span class="mr-1 inline-block h-3 w-3 rounded-full language-dot" data-language="Lua"></span>
<div class="m-0 mr-5 text-md text-neutral-800 dark:text-neutral">
Lua
</div>
<span class="text-md mr-1 text-neutral-800 dark:text-neutral">
<span class="relative block icon"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><path fill="currentColor" d="M287.9 0C297.1 0 305.5 5.25 309.5 13.52L378.1 154.8L531.4 177.5C540.4 178.8 547.8 185.1 550.7 193.7C553.5 202.4 551.2 211.9 544.8 218.2L433.6 328.4L459.9 483.9C461.4 492.9 457.7 502.1 450.2 507.4C442.8 512.7 432.1 513.4 424.9 509.1L287.9 435.9L150.1 509.1C142.9 513.4 133.1 512.7 125.6 507.4C118.2 502.1 114.5 492.9 115.1 483.9L142.2 328.4L31.11 218.2C24.65 211.9 22.36 202.4 25.2 193.7C28.03 185.1 35.5 178.8 44.49 177.5L197.7 154.8L266.3 13.52C270.4 5.249 278.7 0 287.9 0L287.9 0zM287.9 78.95L235.4 187.2C231.9 194.3 225.1 199.3 217.3 200.5L98.98 217.9L184.9 303C190.4 308.5 192.9 316.4 191.6 324.1L171.4 443.7L276.6 387.5C283.7 383.7 292.2 383.7 299.2 387.5L404.4 443.7L384.2 324.1C382.9 316.4 385.5 308.5 391 303L476.9 217.9L358.6 200.5C350.7 199.3 343.9 194.3 340.5 187.2L287.9 78.95z"/></svg></span>
</span>
<div id="github-963a2ba80ea337d0717624382a2af913-stargazers" class="m-0 mr-5 text-md text-neutral-800 dark:text-neutral">
830
</div>
<span class="text-md mr-1 text-neutral-800 dark:text-neutral">
<span class="relative block icon"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M80 104c13.3 0 24-10.7 24-24s-10.7-24-24-24S56 66.7 56 80s10.7 24 24 24zm80-24c0 32.8-19.7 61-48 73.3V192c0 17.7 14.3 32 32 32H304c17.7 0 32-14.3 32-32V153.3C307.7 141 288 112.8 288 80c0-44.2 35.8-80 80-80s80 35.8 80 80c0 32.8-19.7 61-48 73.3V192c0 53-43 96-96 96H256v70.7c28.3 12.3 48 40.5 48 73.3c0 44.2-35.8 80-80 80s-80-35.8-80-80c0-32.8 19.7-61 48-73.3V288H144c-53 0-96-43-96-96V153.3C19.7 141 0 112.8 0 80C0 35.8 35.8 0 80 0s80 35.8 80 80zm208 24c13.3 0 24-10.7 24-24s-10.7-24-24-24s-24 10.7-24 24s10.7 24 24 24zM248 432c0-13.3-10.7-24-24-24s-24 10.7-24 24s10.7 24 24 24s24-10.7 24-24z"/></svg></span>
</span>
<div id="github-963a2ba80ea337d0717624382a2af913-forks" class="m-0 mr-5 text-md text-neutral-800 dark:text-neutral">
144
</div>
</div>
</div>
</div>
<script
async
type="text/javascript"
src="https://technicaldc.github.io/js/fetch-repo.min.dc5533c50cefd50405344b235937142271f26229fe39cbee27fd4960e8bb897a0beebfad77a1091ca91cd0d1fb14e70fc37cc114dd9674fb2c32e0ab512ec8a4.js"
integrity="sha512-3FUzxQzv1QQFNEsjWTcUInHyYin&#43;OcvuJ/1JYOi7iXoL7r&#43;td6EJHKkc0NH7FOcPw3zBFN2WdPssMuCrUS7IpA=="
data-repo-url="https://api.github.com/repos/ThePrimeagen/git-worktree.nvim"
data-repo-id="github-963a2ba80ea337d0717624382a2af913"></script>
</a>
</div>
</description>
</item>
<item>
<title>Customizing Neovim with Noice</title>
<link>https://technicaldc.github.io/videos/customizing-neovim-with-noice/</link>
<pubDate>Sun, 03 Mar 2024 00:00:00 +0000</pubDate>
<guid>https://technicaldc.github.io/videos/customizing-neovim-with-noice/</guid>
<description></description>
</item>
<item>
<title>How to make presentation in linux terminal in geek way?</title>
<link>https://technicaldc.github.io/videos/how-to-make-presentation-in-linux-terminal-in-geek-way/</link>
<pubDate>Sun, 10 Dec 2023 00:00:00 +0000</pubDate>
<guid>https://technicaldc.github.io/videos/how-to-make-presentation-in-linux-terminal-in-geek-way/</guid>
<description></description>
</item>
<item>
<title>My new email client make me cooler 😎</title>
<link>https://technicaldc.github.io/videos/my-new-email-client-make-me-cooler/</link>
<pubDate>Sun, 10 Dec 2023 00:00:00 +0000</pubDate>
<guid>https://technicaldc.github.io/videos/my-new-email-client-make-me-cooler/</guid>
<description></description>
</item>
<item>
<title>My first post</title>
<link>https://technicaldc.github.io/posts/myfirstpost/</link>
<pubDate>Sat, 09 Dec 2023 00:00:00 +0000</pubDate>
<guid>https://technicaldc.github.io/posts/myfirstpost/</guid>
<description>
<h2 class="relative group">First post with Huge and Blowfish
<div id="first-post-with-huge-and-blowfish" class="anchor"></div>
<span
class="absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none">
<a class="text-primary-300 dark:text-neutral-700 !no-underline" href="#first-post-with-huge-and-blowfish" aria-label="Anchor">#</a>
</span>
</h2>
<p>Hey gus! This is my first post on this brand new website built with
Hugo and Blowfish theme.</p>
</description>
</item>
<item>
<title>About</title>
<link>https://technicaldc.github.io/about/</link>
<pubDate>Mon, 13 Jun 2022 20:55:37 +0100</pubDate>
<guid>https://technicaldc.github.io/about/</guid>
<description><p>Hello! I’m a software engineer based in Mumbai with over 4 years of hands-on
experience in the tech industry. In addition to my technical role, I’m the
creator behind <a href="https://www.youtube.com/@TheTechnicalDC" target="_blank">TheTechnicalDC</a>, a
YouTube channel dedicated to exploring the world of Linux. As a true Linux
nerd, I’m passionate about sharing my knowledge and experiences, from practical
tutorials to deep dives into the latest developments in the Linux ecosystem. My
goal is to make Linux more accessible and exciting for enthusiasts and
professionals alike.</p>
<p>Outside of my professional and online endeavors, I have a creative side that
comes to life through sketching. It’s a hobby that allows me to unwind and
explore my artistic talents, providing a perfect balance to my tech-centric
life.</p>
<p>Feel free to browse through my portfolio and blogs to see my work and get
insights into my journey in the tech world. I’m always eager to connect with
fellow tech enthusiasts, Linux users, or anyone interested in discussing
software development and sketching. Don’t hesitate to reach out—I’d love to
hear from you!</p>
<h2 class="relative group">What programs do I use?
<div id="what-programs-do-i-use" class="anchor"></div>
<span
class="absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none">
<a class="text-primary-300 dark:text-neutral-700 !no-underline" href="#what-programs-do-i-use" aria-label="Anchor">#</a>
</span>
</h2>
<ul>
<li><strong>OS:</strong> Arch Linux</li>
<li><strong>Editor:</strong> Neovim</li>
<li><strong>Terminal:</strong> Kitty</li>
<li><strong>Shell:</strong> Fish</li>
<li><strong>Other:</strong> Zoxide, Eza, Fzf</li>
</ul>
</description>
</item>
<item>
<title>Resume</title>
<link>https://technicaldc.github.io/resume/</link>
<pubDate>Mon, 13 Jun 2022 20:55:37 +0100</pubDate>
<guid>https://technicaldc.github.io/resume/</guid>
<description>
<h2 class="relative group">Recommendations
<div id="recommendations" class="anchor"></div>
<span
class="absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none">
<a class="text-primary-300 dark:text-neutral-700 !no-underline" href="#recommendations" aria-label="Anchor">#</a>
</span>
</h2>
<blockquote ><p>&ldquo;I highly recommend Dilip for technical roles. He is a skilled and dedicated
professional with strong expertise in QAD technical and AUX development. His
problem-solving abilities and collaborative approach make him a valuable team
member. Dilip consistently delivers high-quality work, and I confidently
endorse him for any technical position.&rdquo;</p>
<p>— <cite>Kashinath Mali</cite></p>
</blockquote>
<h2 class="relative group">Professional Experience
<div id="professional-experience" class="anchor"></div>
<span
class="absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none">
<a class="text-primary-300 dark:text-neutral-700 !no-underline" href="#professional-experience" aria-label="Anchor">#</a>
</span>
</h2>
<table>
<thead>
<tr>
<th>Company</th>
<th>Role</th>
<th>Dates</th>
</tr>
</thead>
<tbody>
<tr>
<td>Durvah IT Consulting Private Limited</td>
<td>Sr. Software Engineer</td>
<td>May, 2024 - Present</td>
</tr>
<tr>
<td>Aliter Business Solutions Private Limited</td>
<td>QAD Technical Consultant</td>
<td>Aug, 2021 - May, 2024</td>
</tr>
<tr>
<td>Marvel Data Services LLP</td>
<td>Data Entry Operator</td>
<td>Aug, 2018 - April, 2019</td>
</tr>
</tbody>
</table>
<h2 class="relative group">Certifications
<div id="certifications" class="anchor"></div>
<span
class="absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none">
<a class="text-primary-300 dark:text-neutral-700 !no-underline" href="#certifications" aria-label="Anchor">#</a>
</span>
</h2>
<table>
<thead>
<tr>
<th>Certification</th>
<th>Organization</th>
<th>Issued</th>
</tr>
</thead>
<tbody>
<tr>
<td>QRA Developer Practioner</td>
<td>QAD Inc</td>
<td>April, 2025</td>
</tr>
<tr>
<td>Enterprise Platform Developer Certification March 2023</td>
<td>QAD Inc</td>
<td>April, 2024</td>
</tr>
<tr>
<td>Cloud Platform Development Certification</td>
<td>QAD Inc</td>
<td>Jan, 2024</td>
</tr>
<tr>
<td>Customer Version Control (CVC) Certification - Developers</td>
<td>QAD Inc</td>
<td>June, 2022</td>
</tr>
<tr>
<td>NDG Linux Essentials Certificate</td>
<td>Cisco Networking Academy</td>
<td>April, 2021</td>
</tr>
</tbody>
</table>
<h2 class="relative group">Skills
<div id="skills" class="anchor"></div>
<span
class="absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none">
<a class="text-primary-300 dark:text-neutral-700 !no-underline" href="#skills" aria-label="Anchor">#</a>
</span>
</h2>
<ol>
<li>Languages: <code>bash</code> <code>progress</code> <code>typescript</code> <code>lua</code> <code>golang</code> <code>java</code></li>
<li>Frameworks: <code>hugo</code> <code>flask</code> <code>qad reporting framework</code> <code>springboot</code></li>
<li>Tools: <code>linux</code> <code>git</code> <code>gitlab</code> <code>subversion</code> <code>cvc</code> <code>yab</code> <code>jira</code> <code>fisheye</code> <code>tmux</code> <code>vim/vi</code></li>
</ol>
<h2 class="relative group">Education
<div id="education" class="anchor"></div>
<span
class="absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none">
<a class="text-primary-300 dark:text-neutral-700 !no-underline" href="#education" aria-label="Anchor">#</a>
</span>
</h2>
<table>
<thead>
<tr>