-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlogfile
5485 lines (5430 loc) · 295 KB
/
logfile
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
sourcing "/usr/share/nvim/runtime/ftplugin.vim"
finished sourcing /usr/share/nvim/runtime/ftplugin.vim
sourcing "/usr/share/nvim/runtime/indent.vim"
finished sourcing /usr/share/nvim/runtime/indent.vim
could not source "/etc/xdg/nvim/sysinit.vim"
could not source "$VIM/sysinit.vim"
sourcing "/home/ahmed/.config/nvim/init.lua"
line 0: sourcing "/usr/share/nvim/runtime/filetype.lua"
not found in runtime path: "ftdetect/*.vim"
not found in runtime path: "ftdetect/*.lua"
finished sourcing /usr/share/nvim/runtime/filetype.lua
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
not found in runtime path: "colors/rose-pine-moon.vim"
line 0: sourcing "/home/ahmed/.local/share/nvim/lazy/rose-pine/colors/rose-pine-moon.lua"
finished sourcing /home/ahmed/.local/share/nvim/lazy/rose-pine/colors/rose-pine-moon.lua
continuing in /home/ahmed/.config/nvim/init.lua
line 0: sourcing "/home/ahmed/.local/share/nvim/lazy/nvim-dap/plugin/dap.lua"
finished sourcing /home/ahmed/.local/share/nvim/lazy/nvim-dap/plugin/dap.lua
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
line 0: sourcing "/home/ahmed/.local/share/nvim/lazy/cellular-automaton.nvim/plugin/cellular-automaton.lua"
finished sourcing /home/ahmed/.local/share/nvim/lazy/cellular-automaton.nvim/plugin/cellular-automaton.lua
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
line 0: sourcing "/home/ahmed/.local/share/nvim/lazy/nvim-treesitter-textobjects/plugin/nvim-treesitter-textobjects.vim"
finished sourcing /home/ahmed/.local/share/nvim/lazy/nvim-treesitter-textobjects/plugin/nvim-treesitter-textobjects.vim
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
line 0: sourcing "/home/ahmed/.local/share/nvim/lazy/nvim-treesitter/plugin/nvim-treesitter.lua"
finished sourcing /home/ahmed/.local/share/nvim/lazy/nvim-treesitter/plugin/nvim-treesitter.lua
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
line 0: sourcing "/home/ahmed/.local/share/nvim/lazy/LuaSnip/plugin/luasnip.lua"
finished sourcing /home/ahmed/.local/share/nvim/lazy/LuaSnip/plugin/luasnip.lua
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
line 0: sourcing "/home/ahmed/.local/share/nvim/lazy/LuaSnip/plugin/luasnip.vim"
finished sourcing /home/ahmed/.local/share/nvim/lazy/LuaSnip/plugin/luasnip.vim
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
line 0: sourcing "/home/ahmed/.local/share/nvim/lazy/vim-obsession/plugin/obsession.vim"
finished sourcing /home/ahmed/.local/share/nvim/lazy/vim-obsession/plugin/obsession.vim
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
line 0: sourcing "/home/ahmed/.local/share/nvim/lazy/vim-pencil/plugin/pencil.vim"
finished sourcing /home/ahmed/.local/share/nvim/lazy/vim-pencil/plugin/pencil.vim
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
line 0: sourcing "/home/ahmed/.local/share/nvim/lazy/plenary.nvim/plugin/plenary.vim"
finished sourcing /home/ahmed/.local/share/nvim/lazy/plenary.nvim/plugin/plenary.vim
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
line 0: sourcing "/home/ahmed/.local/share/nvim/lazy/telescope.nvim/plugin/telescope.lua"
finished sourcing /home/ahmed/.local/share/nvim/lazy/telescope.nvim/plugin/telescope.lua
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
line 0: sourcing "/home/ahmed/.local/share/nvim/lazy/codesnap.nvim/plugin/codesnap.lua"
finished sourcing /home/ahmed/.local/share/nvim/lazy/codesnap.nvim/plugin/codesnap.lua
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
line 0: sourcing "/home/ahmed/.local/share/nvim/lazy/vim-sleuth/plugin/sleuth.vim"
finished sourcing /home/ahmed/.local/share/nvim/lazy/vim-sleuth/plugin/sleuth.vim
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
line 0: sourcing "/home/ahmed/.local/share/nvim/lazy/FixCursorHold.nvim/plugin/fix_cursorhold_nvim.vim"
finished sourcing /home/ahmed/.local/share/nvim/lazy/FixCursorHold.nvim/plugin/fix_cursorhold_nvim.vim
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
line 0: sourcing "/home/ahmed/.local/share/nvim/lazy/neotest/plugin/neotest.lua"
finished sourcing /home/ahmed/.local/share/nvim/lazy/neotest/plugin/neotest.lua
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
line 0: sourcing "/home/ahmed/.local/share/nvim/lazy/vim-fugitive/plugin/fugitive.vim"
finished sourcing /home/ahmed/.local/share/nvim/lazy/vim-fugitive/plugin/fugitive.vim
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
line 0: sourcing "/home/ahmed/.local/share/nvim/lazy/vim-fugitive/ftdetect/fugitive.vim"
finished sourcing /home/ahmed/.local/share/nvim/lazy/vim-fugitive/ftdetect/fugitive.vim
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
line 0: sourcing "/home/ahmed/.local/share/nvim/lazy/zen-mode.nvim/plugin/zen-mode.vim"
finished sourcing /home/ahmed/.local/share/nvim/lazy/zen-mode.nvim/plugin/zen-mode.vim
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
line 0: sourcing "/home/ahmed/.local/share/nvim/lazy/nvim-web-devicons/plugin/nvim-web-devicons.vim"
finished sourcing /home/ahmed/.local/share/nvim/lazy/nvim-web-devicons/plugin/nvim-web-devicons.vim
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
line 0: sourcing "/home/ahmed/.local/share/nvim/lazy/render-markdown/plugin/render-markdown.lua"
finished sourcing /home/ahmed/.local/share/nvim/lazy/render-markdown/plugin/render-markdown.lua
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
line 0: sourcing "/home/ahmed/.local/share/nvim/lazy/diffview.nvim/plugin/diffview.lua"
finished sourcing /home/ahmed/.local/share/nvim/lazy/diffview.nvim/plugin/diffview.lua
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
line 0: sourcing "/home/ahmed/.local/share/nvim/lazy/neogit/plugin/neogit.lua"
finished sourcing /home/ahmed/.local/share/nvim/lazy/neogit/plugin/neogit.lua
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
Neogit HEAD requires at least NVIM 0.10 - Pin to tag 'v0.0.1' for NVIM 0.9.x
line 0: sourcing "/home/ahmed/.local/share/nvim/lazy/undotree/plugin/undotree.vim"
finished sourcing /home/ahmed/.local/share/nvim/lazy/undotree/plugin/undotree.vim
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
line 0: sourcing "/home/ahmed/.local/share/nvim/lazy/vim-surround/plugin/surround.vim"
finished sourcing /home/ahmed/.local/share/nvim/lazy/vim-surround/plugin/surround.vim
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
line 0: sourcing "/home/ahmed/.local/share/nvim/lazy/guihua.lua/ftdetect/guihua.vim"
finished sourcing /home/ahmed/.local/share/nvim/lazy/guihua.lua/ftdetect/guihua.vim
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
line 0: sourcing "/home/ahmed/.local/share/nvim/lazy/nvim-cmp/plugin/cmp.lua"
finished sourcing /home/ahmed/.local/share/nvim/lazy/nvim-cmp/plugin/cmp.lua
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
line 0: sourcing "/home/ahmed/.local/share/nvim/lazy/nvim-lspconfig/plugin/lspconfig.lua"
finished sourcing /home/ahmed/.local/share/nvim/lazy/nvim-lspconfig/plugin/lspconfig.lua
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
line 0: sourcing "/home/ahmed/.local/share/nvim/lazy/nvim-transparent/plugin/transparent.vim"
finished sourcing /home/ahmed/.local/share/nvim/lazy/nvim-transparent/plugin/transparent.vim
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
line 0: sourcing "/home/ahmed/.local/share/nvim/lazy/go.nvim/ftdetect/filetype.vim"
finished sourcing /home/ahmed/.local/share/nvim/lazy/go.nvim/ftdetect/filetype.vim
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
line 0: sourcing "/home/ahmed/.local/share/nvim/lazy/todo-comments.nvim/plugin/todo.vim"
finished sourcing /home/ahmed/.local/share/nvim/lazy/todo-comments.nvim/plugin/todo.vim
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
line 0: sourcing "/usr/share/nvim/runtime/plugin/editorconfig.lua"
finished sourcing /usr/share/nvim/runtime/plugin/editorconfig.lua
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
line 0: sourcing "/usr/share/nvim/runtime/plugin/gzip.vim"
finished sourcing /usr/share/nvim/runtime/plugin/gzip.vim
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
line 0: sourcing "/usr/share/nvim/runtime/plugin/health.vim"
finished sourcing /usr/share/nvim/runtime/plugin/health.vim
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
line 0: sourcing "/usr/share/nvim/runtime/plugin/man.lua"
finished sourcing /usr/share/nvim/runtime/plugin/man.lua
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
line 0: sourcing "/usr/share/nvim/runtime/plugin/matchit.vim"
not found in 'packpath': "pack/*/start/matchit"
line 3: sourcing "/usr/share/nvim/runtime/pack/dist/opt/matchit/plugin/matchit.vim"
finished sourcing /usr/share/nvim/runtime/pack/dist/opt/matchit/plugin/matchit.vim
continuing in /usr/share/nvim/runtime/plugin/matchit.vim
finished sourcing /usr/share/nvim/runtime/plugin/matchit.vim
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
line 0: sourcing "/usr/share/nvim/runtime/plugin/matchparen.vim"
finished sourcing /usr/share/nvim/runtime/plugin/matchparen.vim
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
line 0: sourcing "/usr/share/nvim/runtime/plugin/netrwPlugin.vim"
finished sourcing /usr/share/nvim/runtime/plugin/netrwPlugin.vim
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
line 0: sourcing "/usr/share/nvim/runtime/plugin/nvim.lua"
finished sourcing /usr/share/nvim/runtime/plugin/nvim.lua
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
line 0: sourcing "/usr/share/nvim/runtime/plugin/rplugin.vim"
finished sourcing /usr/share/nvim/runtime/plugin/rplugin.vim
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
line 0: sourcing "/usr/share/nvim/runtime/plugin/shada.vim"
finished sourcing /usr/share/nvim/runtime/plugin/shada.vim
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
line 0: sourcing "/usr/share/nvim/runtime/plugin/spellfile.vim"
finished sourcing /usr/share/nvim/runtime/plugin/spellfile.vim
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
line 0: sourcing "/usr/share/nvim/runtime/plugin/tarPlugin.vim"
finished sourcing /usr/share/nvim/runtime/plugin/tarPlugin.vim
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
line 0: sourcing "/usr/share/nvim/runtime/plugin/tohtml.vim"
finished sourcing /usr/share/nvim/runtime/plugin/tohtml.vim
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
line 0: sourcing "/usr/share/nvim/runtime/plugin/tutor.vim"
finished sourcing /usr/share/nvim/runtime/plugin/tutor.vim
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
line 0: sourcing "/usr/share/nvim/runtime/plugin/zipPlugin.vim"
finished sourcing /usr/share/nvim/runtime/plugin/zipPlugin.vim
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
line 0: sourcing "/home/ahmed/.local/share/nvim/lazy/cmp_luasnip/after/plugin/cmp_luasnip.lua"
finished sourcing /home/ahmed/.local/share/nvim/lazy/cmp_luasnip/after/plugin/cmp_luasnip.lua
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
line 0: sourcing "/home/ahmed/.local/share/nvim/lazy/cmp-cmdline/after/plugin/cmp_cmdline.lua"
finished sourcing /home/ahmed/.local/share/nvim/lazy/cmp-cmdline/after/plugin/cmp_cmdline.lua
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
line 0: sourcing "/home/ahmed/.local/share/nvim/lazy/cmp-path/after/plugin/cmp_path.lua"
finished sourcing /home/ahmed/.local/share/nvim/lazy/cmp-path/after/plugin/cmp_path.lua
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
line 0: sourcing "/home/ahmed/.local/share/nvim/lazy/cmp-buffer/after/plugin/cmp_buffer.lua"
finished sourcing /home/ahmed/.local/share/nvim/lazy/cmp-buffer/after/plugin/cmp_buffer.lua
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
line 0: sourcing "/home/ahmed/.local/share/nvim/lazy/cmp-nvim-lsp/after/plugin/cmp_nvim_lsp.lua"
finished sourcing /home/ahmed/.local/share/nvim/lazy/cmp-nvim-lsp/after/plugin/cmp_nvim_lsp.lua
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
line 0: sourcing "/home/ahmed/.local/share/nvim/lazy/indent-blankline.nvim/after/plugin/commands.lua"
finished sourcing /home/ahmed/.local/share/nvim/lazy/indent-blankline.nvim/after/plugin/commands.lua
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
Error detected while processing /home/ahmed/.config/nvim/init.lua:
E5113: Error while calling lua chunk: /home/ahmed/.config/nvim/lua/omerxx/init.lua:2: module 'omerxx.lazy.plugins.lazy' not found:
no field package.preload['omerxx.lazy.plugins.lazy']
cache_loader: module omerxx.lazy.plugins.lazy not found
cache_loader_lib: module omerxx.lazy.plugins.lazy not found
no file './omerxx/lazy/plugins/lazy.lua'
no file '/usr/share/luajit-2.1/omerxx/lazy/plugins/lazy.lua'
no file '/usr/local/share/lua/5.1/omerxx/lazy/plugins/lazy.lua'
no file '/usr/local/share/lua/5.1/omerxx/lazy/plugins/lazy/init.lua'
no file '/usr/share/lua/5.1/omerxx/lazy/plugins/lazy.lua'
no file '/usr/share/lua/5.1/omerxx/lazy/plugins/lazy/init.lua'
no file '/home/ahmed/.local/share/nvim/lazy-rocks/telescope.nvim/share/lua/5.1/omerxx/lazy/plugins/lazy.lua'
no file '/home/ahmed/.local/share/nvim/lazy-rocks/telescope.nvim/share/lua/5.1/omerxx/lazy/plugins/lazy/init.lua'
no file './omerxx/lazy/plugins/lazy.so'
no file '/usr/local/lib/lua/5.1/omerxx/lazy/plugins/lazy.so'
no file '/usr/lib/x86_64-linux-gnu/lua/5.1/omerxx/lazy/plugins/lazy.so'
no file '/usr/local/lib/lua/5.1/loadall.so'
no file '/home/ahmed/.local/share/nvim/lazy-rocks/telescope.nvim/lib/lua/5.1/omerxx/lazy/plugins/lazy.so'
no file '/home/ahmed/.local/share/nvim/lazy-rocks/telescope.nvim/lib64/lua/5.1/omerxx/lazy/plugins/lazy.so'
no file './omerxx.so'
no file '/usr/local/lib/lua/5.1/omerxx.so'
no file '/usr/lib/x86_64-linux-gnu/lua/5.1/omerxx.so'
no file '/usr/local/lib/lua/5.1/loadall.so'
no file '/home/ahmed/.local/share/nvim/lazy-rocks/telescope.nvim/lib/lua/5.1/omerxx.so'
no file '/home/ahmed/.local/share/nvim/lazy-rocks/telescope.nvim/lib64/lua/5.1/omerxx.so'
stack traceback:
[C]: in function 'require'
/home/ahmed/.config/nvim/lua/omerxx/init.lua:2: in main chunk
[C]: in function 'require'
/home/ahmed/.config/nvim/init.lua:2: in main chunk
finished sourcing /home/ahmed/.config/nvim/init.lua
sourcing "/usr/share/nvim/runtime/filetype.lua"
finished sourcing /usr/share/nvim/runtime/filetype.lua
sourcing "/usr/share/nvim/runtime/syntax/syntax.vim"
line 19: sourcing "/usr/share/nvim/runtime/syntax/synload.vim"
finished sourcing /usr/share/nvim/runtime/syntax/synload.vim
continuing in /usr/share/nvim/runtime/syntax/syntax.vim
finished sourcing /usr/share/nvim/runtime/syntax/syntax.vim
Reading ShaDa file "/home/ahmed/.local/state/nvim/shada/main.shada" info marks oldfiles
Neogit HEAD requires at least NVIM 0.10 - Pin to tag 'v0.0.1' for NVIM 0.9.x
Error detected while processing /home/ahmed/.config/nvim/init.lua:
E5113: Error while calling lua chunk: /home/ahmed/.config/nvim/lua/omerxx/init.lua:2: module 'omerxx.lazy.plugins.lazy' not found:
no field package.preload['omerxx.lazy.plugins.lazy']
cache_loader: module omerxx.lazy.plugins.lazy not found
cache_loader_lib: module omerxx.lazy.plugins.lazy not found
no file './omerxx/lazy/plugins/lazy.lua'
no file '/usr/share/luajit-2.1/omerxx/lazy/plugins/lazy.lua'
no file '/usr/local/share/lua/5.1/omerxx/lazy/plugins/lazy.lua'
no file '/usr/local/share/lua/5.1/omerxx/lazy/plugins/lazy/init.lua'
no file '/usr/share/lua/5.1/omerxx/lazy/plugins/lazy.lua'
no file '/usr/share/lua/5.1/omerxx/lazy/plugins/lazy/init.lua'
no file '/home/ahmed/.local/share/nvim/lazy-rocks/telescope.nvim/share/lua/5.1/omerxx/lazy/plugins/lazy.lua'
no file '/home/ahmed/.local/share/nvim/lazy-rocks/telescope.nvim/share/lua/5.1/omerxx/lazy/plugins/lazy/init.lua'
no file './omerxx/lazy/plugins/lazy.so'
no file '/usr/local/lib/lua/5.1/omerxx/lazy/plugins/lazy.so'
no file '/usr/lib/x86_64-linux-gnu/lua/5.1/omerxx/lazy/plugins/lazy.so'
no file '/usr/local/lib/lua/5.1/loadall.so'
no file '/home/ahmed/.local/share/nvim/lazy-rocks/telescope.nvim/lib/lua/5.1/omerxx/lazy/plugins/lazy.so'
no file '/home/ahmed/.local/share/nvim/lazy-rocks/telescope.nvim/lib64/lua/5.1/omerxx/lazy/plugins/lazy.so'
no file './omerxx.so'
no file '/usr/local/lib/lua/5.1/omerxx.so'
no file '/usr/lib/x86_64-linux-gnu/lua/5.1/omerxx.so'
no file '/usr/local/lib/lua/5.1/loadall.so'
no file '/home/ahmed/.local/share/nvim/lazy-rocks/telescope.nvim/lib/lua/5.1/omerxx.so'
no file '/home/ahmed/.local/share/nvim/lazy-rocks/telescope.nvim/lib64/lua/5.1/omerxx.so'
stack traceback:
[C]: in function 'require'
/home/ahmed/.config/nvim/lua/omerxx/init.lua:2: in main chunk
[C]: in function 'require'
/home/ahmed/.config/nvim/init.lua:2: in main chunk
--- Terminal info --- {{{
&term: tmux-256color
Description: tmux with 256 colors
Aliases: tmux-256color
Boolean capabilities:
auto_left_margin bw = false
auto_right_margin am = true
no_esc_ctlc xsb = false
ceol_standout_glitch xhp = false
eat_newline_glitch xenl = true
erase_overstrike eo = false
generic_type gn = false
hard_copy hc = false
has_meta_key km = true
has_status_line hs = true
insert_null_glitch in = false
memory_above da = false
memory_below db = false
move_insert_mode mir = true
move_standout_mode msgr = true
over_strike os = false
status_line_esc_ok eslok = false
dest_tabs_magic_smso xt = false
tilde_glitch hz = false
transparent_underline ul = false
xon_xoff xon = false
needs_xon_xoff nxon = false
prtr_silent mc5i = false
hard_cursor chts = false
non_rev_rmcup nrrmc = false
no_pad_char npc = false
non_dest_scroll_region ndscr = false
can_change ccc = false
back_color_erase bce = false
hue_lightness_saturation hls = false
col_addr_glitch xhpa = false
cr_cancels_micro_mode crxm = false
has_print_wheel daisy = false
row_addr_glitch xvpa = false
semi_auto_right_margin sam = false
cpi_changes_res cpix = false
lpi_changes_res lpix = false
backspaces_with_bs OTbs = true
crt_no_scrolling OTns = false
no_correctly_working_cr OTnc = false
gnu_has_meta_key OTMT = false
linefeed_is_newline OTNL = false
has_hardware_tabs OTpt = true
return_does_clr_eol OTxr = false
Numeric capabilities:
columns cols = 80
init_tabs it = 8
lines lines = 24
lines_of_memory lm = -1
magic_cookie_glitch xmc = -1
padding_baud_rate pb = -1
virtual_terminal vt = -1
width_status_line wsl = -1
num_labels nlab = -1
label_height lh = -1
label_width lw = -1
max_attributes ma = -1
maximum_windows wnum = -1
max_colors colors = 256
max_pairs pairs = 65536
no_color_video ncv = -1
buffer_capacity bufsz = -1
dot_vert_spacing spinv = -1
dot_horz_spacing spinh = -1
max_micro_address maddr = -1
max_micro_jump mjump = -1
micro_col_size mcs = -1
micro_line_size mls = -1
number_of_pins npins = -1
output_res_char orc = -1
output_res_line orl = -1
output_res_horz_inch orhi = -1
output_res_vert_inch orvi = -1
print_rate cps = -1
wide_char_size widcs = -1
buttons btns = -1
bit_image_entwining bitwin = -1
bit_image_type bitype = -1
magic_cookie_glitch_ul OTug = -1
carriage_return_delay OTdC = -1
new_line_delay OTdN = -1
backspace_delay OTdB = -1
horizontal_tab_delay OTdT = -1
number_of_function_keys OTkn = -1
String capabilities:
back_tab cbt = ^[[Z
bell bel = ^G
carriage_return cr = ^M
change_scroll_region csr = ^[[%i%p1%d;%p2%dr
clear_all_tabs tbc = ^[[3g
clear_screen clear = ^[[H^[[J
clr_eol el = ^[[K
clr_eos ed = ^[[J
column_address hpa = ^[[%i%p1%dG
cursor_address cup = ^[[%i%p1%d;%p2%dH
cursor_down cud1 = ^@
cursor_home home = ^[[H
cursor_invisible civis = ^[[?25l
cursor_left cub1 = ^H
cursor_normal cnorm = ^[[34h^[[?25h
cursor_right cuf1 = ^[[C
cursor_up cuu1 = ^[M
cursor_visible cvvis = ^[[34l
delete_character dch1 = ^[[P
delete_line dl1 = ^[[M
dis_status_line dsl = ^[]0;^G
enter_alt_charset_mode smacs = ^N
enter_blink_mode blink = ^[[5m
enter_bold_mode bold = ^[[1m
enter_ca_mode smcup = ^[[?1049h
enter_dim_mode dim = ^[[2m
enter_insert_mode smir = ^[[4h
enter_secure_mode invis = ^[[8m
enter_reverse_mode rev = ^[[7m
enter_standout_mode smso = ^[[7m
enter_underline_mode smul = ^[[4m
exit_alt_charset_mode rmacs = ^O
exit_attribute_mode sgr0 = ^[[m^O
exit_ca_mode rmcup = ^[[?1049l
exit_insert_mode rmir = ^[[4l
exit_standout_mode rmso = ^[[27m
exit_underline_mode rmul = ^[[24m
flash_screen flash = ^[g
from_status_line fsl = ^G
init_2string is2 = ^[)0
insert_line il1 = ^[[L
key_backspace kbs = ^?
key_dc kdch1 = ^[[3~
key_down kcud1 = ^[OB
key_f1 kf1 = ^[OP
key_f10 kf10 = ^[[21~
key_f2 kf2 = ^[OQ
key_f3 kf3 = ^[OR
key_f4 kf4 = ^[OS
key_f5 kf5 = ^[[15~
key_f6 kf6 = ^[[17~
key_f7 kf7 = ^[[18~
key_f8 kf8 = ^[[19~
key_f9 kf9 = ^[[20~
key_home khome = ^[[1~
key_ic kich1 = ^[[2~
key_left kcub1 = ^[OD
key_npage knp = ^[[6~
key_ppage kpp = ^[[5~
key_right kcuf1 = ^[OC
key_sf kind = ^[[1;2B
key_sr kri = ^[[1;2A
key_up kcuu1 = ^[OA
keypad_local rmkx = ^[[?1l^[>
keypad_xmit smkx = ^[[?1h^[=
newline nel = ^[E
parm_dch dch = ^[[%p1%dP
parm_delete_line dl = ^[[%p1%dM
parm_down_cursor cud = ^[[%p1%dB
parm_ich ich = ^[[%p1%d@
parm_index indn = ^[[%p1%dS
parm_insert_line il = ^[[%p1%dL
parm_left_cursor cub = ^[[%p1%dD
parm_right_cursor cuf = ^[[%p1%dC
parm_rindex rin = ^[[%p1%dT
parm_up_cursor cuu = ^[[%p1%dA
reset_2string rs2 = ^[c^[[?1000l^[[?25h
restore_cursor rc = ^[8
row_address vpa = ^[[%i%p1%dd
save_cursor sc = ^[7
scroll_forward ind = ^@
scroll_reverse ri = ^[M
set_attributes sgr = ^[[0%?%p6%t;1%;%?%p2%t;4%;%?%p1%p3%|%t;7%;%?%p4%t;5%;%?%p5%t;2%;%?%p7%t;8%;m%?%p9%t^N%e^O%;
set_tab hts = ^[H
tab ht =
to_status_line tsl = ^[]0;
acs_chars acsc = ++,,--..00``aaffgghhiijjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~
key_btab kcbt = ^[[Z
ena_acs enacs = ^[(B^[)0
key_end kend = ^[[4~
key_sdc kDC = ^[[3;2~
key_send kEND = ^[[1;2F
key_shome kHOM = ^[[1;2H
key_sic kIC = ^[[2;2~
key_sleft kLFT = ^[[1;2D
key_snext kNXT = ^[[6;2~
key_sprevious kPRV = ^[[5;2~
key_sright kRIT = ^[[1;2C
key_f11 kf11 = ^[[23~
key_f12 kf12 = ^[[24~
key_f13 kf13 = ^[[1;2P
key_f14 kf14 = ^[[1;2Q
key_f15 kf15 = ^[[1;2R
key_f16 kf16 = ^[[1;2S
key_f17 kf17 = ^[[15;2~
key_f18 kf18 = ^[[17;2~
key_f19 kf19 = ^[[18;2~
key_f20 kf20 = ^[[19;2~
key_f21 kf21 = ^[[20;2~
key_f22 kf22 = ^[[21;2~
key_f23 kf23 = ^[[23;2~
key_f24 kf24 = ^[[24;2~
key_f25 kf25 = ^[[1;5P
key_f26 kf26 = ^[[1;5Q
key_f27 kf27 = ^[[1;5R
key_f28 kf28 = ^[[1;5S
key_f29 kf29 = ^[[15;5~
key_f30 kf30 = ^[[17;5~
key_f31 kf31 = ^[[18;5~
key_f32 kf32 = ^[[19;5~
key_f33 kf33 = ^[[20;5~
key_f34 kf34 = ^[[21;5~
key_f35 kf35 = ^[[23;5~
key_f36 kf36 = ^[[24;5~
key_f37 kf37 = ^[[1;6P
key_f38 kf38 = ^[[1;6Q
key_f39 kf39 = ^[[1;6R
key_f40 kf40 = ^[[1;6S
key_f41 kf41 = ^[[15;6~
key_f42 kf42 = ^[[17;6~
key_f43 kf43 = ^[[18;6~
key_f44 kf44 = ^[[19;6~
key_f45 kf45 = ^[[20;6~
key_f46 kf46 = ^[[21;6~
key_f47 kf47 = ^[[23;6~
key_f48 kf48 = ^[[24;6~
key_f49 kf49 = ^[[1;3P
key_f50 kf50 = ^[[1;3Q
key_f51 kf51 = ^[[1;3R
key_f52 kf52 = ^[[1;3S
key_f53 kf53 = ^[[15;3~
key_f54 kf54 = ^[[17;3~
key_f55 kf55 = ^[[18;3~
key_f56 kf56 = ^[[19;3~
key_f57 kf57 = ^[[20;3~
key_f58 kf58 = ^[[21;3~
key_f59 kf59 = ^[[23;3~
key_f60 kf60 = ^[[24;3~
key_f61 kf61 = ^[[1;4P
key_f62 kf62 = ^[[1;4Q
key_f63 kf63 = ^[[1;4R
clr_bol el1 = ^[[1K
user6 u6 = ^[[%i%d;%dR
user7 u7 = ^[[6n
user8 u8 = ^[[?1;2c
user9 u9 = ^[[c
orig_pair op = ^[[39;49m
enter_italics_mode sitm = ^[[3m
exit_italics_mode ritm = ^[[23m
key_mouse kmous = ^[[M
set_a_foreground setaf = ^[[%?%p1%{8}%<%t3%p1%d%e%p1%{16}%<%t9%p1%{8}%-%d%e38;5;%p1%d%;m
set_a_background setab = ^[[%?%p1%{8}%<%t4%p1%d%e%p1%{16}%<%t10%p1%{8}%-%d%e48;5;%p1%d%;m
Extended boolean capabilities:
AX = true
G0 = true
XF = true
Extended numeric capabilities:
U8 = 1
Extended string capabilities:
BD = ^[[?2004l
BE = ^[[?2004h
Cr = ^[]112^G
Cs = ^[]12;%p1%s^G
E0 = ^[(B
E3 = ^[[3J
Ms = ^[]52;%p1%s;%p2%s^G
PE = ^[[201~
PS = ^[[200~
RV = ^[[>c
S0 = ^[(%p1%c
Se = ^[[2 q
Smulx = ^[[4:%p1%dm
Ss = ^[[%p1%d q
TS = ^[]0;
XR = ^[[>0q
fd = ^[[?1004l
fe = ^[[?1004h
kDC3 = ^[[3;3~
kDC4 = ^[[3;4~
kDC5 = ^[[3;5~
kDC6 = ^[[3;6~
kDC7 = ^[[3;7~
kDN = ^[[1;2B
kDN3 = ^[[1;3B
kDN4 = ^[[1;4B
kDN5 = ^[[1;5B
kDN6 = ^[[1;6B
kDN7 = ^[[1;7B
kEND3 = ^[[1;3F
kEND4 = ^[[1;4F
kEND5 = ^[[1;5F
kEND6 = ^[[1;6F
kEND7 = ^[[1;7F
kHOM3 = ^[[1;3H
kHOM4 = ^[[1;4H
kHOM5 = ^[[1;5H
kHOM6 = ^[[1;6H
kHOM7 = ^[[1;7H
kIC3 = ^[[2;3~
kIC4 = ^[[2;4~
kIC5 = ^[[2;5~
kIC6 = ^[[2;6~
kIC7 = ^[[2;7~
kLFT3 = ^[[1;3D
kLFT4 = ^[[1;4D
kLFT5 = ^[[1;5D
kLFT6 = ^[[1;6D
kLFT7 = ^[[1;7D
kNXT3 = ^[[6;3~
kNXT4 = ^[[6;4~
kNXT5 = ^[[6;5~
kNXT6 = ^[[6;6~
kNXT7 = ^[[6;7~
kPRV3 = ^[[5;3~
kPRV4 = ^[[5;4~
kPRV5 = ^[[5;5~
kPRV6 = ^[[5;6~
kPRV7 = ^[[5;7~
kRIT3 = ^[[1;3C
kRIT4 = ^[[1;4C
kRIT5 = ^[[1;5C
kRIT6 = ^[[1;6C
kRIT7 = ^[[1;7C
kUP = ^[[1;2A
kUP3 = ^[[1;3A
kUP4 = ^[[1;4A
kUP5 = ^[[1;5A
kUP6 = ^[[1;6A
kUP7 = ^[[1;7A
kxIN = ^[[I
kxOUT = ^[[O
rmxx = ^[[29m
rv = ^[\[[0-9]+;[0-9]+;[0-9]+c
smxx = ^[[9m
xr = ^[P>\|[ -~]+^[\\
ext.get_bg = ^[]11;?^G
ext.get_extkeys = ^[[?u^[[c
ext.enter_altfont_mode = ^[[11m
setrgbf = ^[[38;2;%p1%d;%p2%d;%p3%dm
setrgbb = ^[[48;2;%p1%d;%p2%d;%p3%dm
ext.save_title = ^[[22;0t
ext.restore_title = ^[[23;0t
ext.enable_lr_margin = ^[[?69h
ext.disable_lr_margin = ^[[?69l
ext.enable_bpaste = ^[[?2004h
ext.disable_bpaste = ^[[?2004l
ext.enable_focus = ^[[?1004h
ext.disable_focus = ^[[?1004l
ext.enable_mouse = ^[[?1002h^[[?1006h
ext.disable_mouse = ^[[?1002l^[[?1006l
ext.enable_mouse_move = ^[[?1003h
ext.disable_mouse_move = ^[[?1003l
ext.set_underline_color = ^[[58:2::%p1%d:%p2%d:%p3%dm
ext.enable_extended_keys = ^[[>4;2m
ext.disable_extended_keys = ^[[>4;0m
}}}
Writing ShaDa file "/home/ahmed/.local/state/nvim/shada/main.shada"
sourcing "/usr/share/nvim/runtime/ftplugin.vim"
finished sourcing /usr/share/nvim/runtime/ftplugin.vim
sourcing "/usr/share/nvim/runtime/indent.vim"
finished sourcing /usr/share/nvim/runtime/indent.vim
could not source "/etc/xdg/nvim/sysinit.vim"
could not source "$VIM/sysinit.vim"
sourcing "/home/ahmed/.config/nvim/init.lua"
line 0: sourcing "/usr/share/nvim/runtime/filetype.lua"
not found in runtime path: "ftdetect/*.vim"
not found in runtime path: "ftdetect/*.lua"
finished sourcing /usr/share/nvim/runtime/filetype.lua
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
line 0: sourcing "/home/ahmed/.local/share/nvim/lazy/nvim-dap/plugin/dap.lua"
finished sourcing /home/ahmed/.local/share/nvim/lazy/nvim-dap/plugin/dap.lua
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
line 0: sourcing "/home/ahmed/.local/share/nvim/lazy/vim-fugitive/plugin/fugitive.vim"
finished sourcing /home/ahmed/.local/share/nvim/lazy/vim-fugitive/plugin/fugitive.vim
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
line 0: sourcing "/home/ahmed/.local/share/nvim/lazy/vim-fugitive/ftdetect/fugitive.vim"
finished sourcing /home/ahmed/.local/share/nvim/lazy/vim-fugitive/ftdetect/fugitive.vim
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
line 0: sourcing "/home/ahmed/.local/share/nvim/lazy/guihua.lua/ftdetect/guihua.vim"
finished sourcing /home/ahmed/.local/share/nvim/lazy/guihua.lua/ftdetect/guihua.vim
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
line 0: sourcing "/home/ahmed/.local/share/nvim/lazy/LuaSnip/plugin/luasnip.lua"
finished sourcing /home/ahmed/.local/share/nvim/lazy/LuaSnip/plugin/luasnip.lua
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
line 0: sourcing "/home/ahmed/.local/share/nvim/lazy/LuaSnip/plugin/luasnip.vim"
finished sourcing /home/ahmed/.local/share/nvim/lazy/LuaSnip/plugin/luasnip.vim
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
line 0: sourcing "/home/ahmed/.local/share/nvim/lazy/nvim-cmp/plugin/cmp.lua"
finished sourcing /home/ahmed/.local/share/nvim/lazy/nvim-cmp/plugin/cmp.lua
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
line 0: sourcing "/home/ahmed/.local/share/nvim/lazy/nvim-lspconfig/plugin/lspconfig.lua"
finished sourcing /home/ahmed/.local/share/nvim/lazy/nvim-lspconfig/plugin/lspconfig.lua
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
line 0: sourcing "/home/ahmed/.local/share/nvim/lazy/plenary.nvim/plugin/plenary.vim"
finished sourcing /home/ahmed/.local/share/nvim/lazy/plenary.nvim/plugin/plenary.vim
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
line 0: sourcing "/home/ahmed/.local/share/nvim/lazy/todo-comments.nvim/plugin/todo.vim"
finished sourcing /home/ahmed/.local/share/nvim/lazy/todo-comments.nvim/plugin/todo.vim
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
line 0: sourcing "/home/ahmed/.local/share/nvim/lazy/nvim-transparent/plugin/transparent.vim"
finished sourcing /home/ahmed/.local/share/nvim/lazy/nvim-transparent/plugin/transparent.vim
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
line 0: sourcing "/home/ahmed/.local/share/nvim/lazy/nvim-web-devicons/plugin/nvim-web-devicons.vim"
finished sourcing /home/ahmed/.local/share/nvim/lazy/nvim-web-devicons/plugin/nvim-web-devicons.vim
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
line 0: sourcing "/home/ahmed/.local/share/nvim/lazy/vim-surround/plugin/surround.vim"
finished sourcing /home/ahmed/.local/share/nvim/lazy/vim-surround/plugin/surround.vim
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
line 0: sourcing "/home/ahmed/.local/share/nvim/lazy/FixCursorHold.nvim/plugin/fix_cursorhold_nvim.vim"
finished sourcing /home/ahmed/.local/share/nvim/lazy/FixCursorHold.nvim/plugin/fix_cursorhold_nvim.vim
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
line 0: sourcing "/home/ahmed/.local/share/nvim/lazy/nvim-treesitter-textobjects/plugin/nvim-treesitter-textobjects.vim"
finished sourcing /home/ahmed/.local/share/nvim/lazy/nvim-treesitter-textobjects/plugin/nvim-treesitter-textobjects.vim
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
line 0: sourcing "/home/ahmed/.local/share/nvim/lazy/nvim-treesitter/plugin/nvim-treesitter.lua"
finished sourcing /home/ahmed/.local/share/nvim/lazy/nvim-treesitter/plugin/nvim-treesitter.lua
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
line 0: sourcing "/home/ahmed/.local/share/nvim/lazy/neotest/plugin/neotest.lua"
finished sourcing /home/ahmed/.local/share/nvim/lazy/neotest/plugin/neotest.lua
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
line 0: sourcing "/home/ahmed/.local/share/nvim/lazy/undotree/plugin/undotree.vim"
finished sourcing /home/ahmed/.local/share/nvim/lazy/undotree/plugin/undotree.vim
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
line 0: sourcing "/home/ahmed/.local/share/nvim/lazy/cellular-automaton.nvim/plugin/cellular-automaton.lua"
finished sourcing /home/ahmed/.local/share/nvim/lazy/cellular-automaton.nvim/plugin/cellular-automaton.lua
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
not found in runtime path: "colors/rose-pine-moon.vim"
line 0: sourcing "/home/ahmed/.local/share/nvim/lazy/rose-pine/colors/rose-pine-moon.lua"
finished sourcing /home/ahmed/.local/share/nvim/lazy/rose-pine/colors/rose-pine-moon.lua
continuing in /home/ahmed/.config/nvim/init.lua
line 0: sourcing "/home/ahmed/.local/share/nvim/lazy/vim-obsession/plugin/obsession.vim"
finished sourcing /home/ahmed/.local/share/nvim/lazy/vim-obsession/plugin/obsession.vim
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
line 0: sourcing "/home/ahmed/.local/share/nvim/lazy/telescope.nvim/plugin/telescope.lua"
finished sourcing /home/ahmed/.local/share/nvim/lazy/telescope.nvim/plugin/telescope.lua
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
line 0: sourcing "/home/ahmed/.local/share/nvim/lazy/go.nvim/ftdetect/filetype.vim"
finished sourcing /home/ahmed/.local/share/nvim/lazy/go.nvim/ftdetect/filetype.vim
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
line 0: sourcing "/home/ahmed/.local/share/nvim/lazy/vim-pencil/plugin/pencil.vim"
finished sourcing /home/ahmed/.local/share/nvim/lazy/vim-pencil/plugin/pencil.vim
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
line 0: sourcing "/home/ahmed/.local/share/nvim/lazy/vim-sleuth/plugin/sleuth.vim"
finished sourcing /home/ahmed/.local/share/nvim/lazy/vim-sleuth/plugin/sleuth.vim
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
line 0: sourcing "/home/ahmed/.local/share/nvim/lazy/zen-mode.nvim/plugin/zen-mode.vim"
finished sourcing /home/ahmed/.local/share/nvim/lazy/zen-mode.nvim/plugin/zen-mode.vim
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
line 0: sourcing "/home/ahmed/.local/share/nvim/lazy/codesnap.nvim/plugin/codesnap.lua"
finished sourcing /home/ahmed/.local/share/nvim/lazy/codesnap.nvim/plugin/codesnap.lua
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
line 0: sourcing "/home/ahmed/.local/share/nvim/lazy/diffview.nvim/plugin/diffview.lua"
finished sourcing /home/ahmed/.local/share/nvim/lazy/diffview.nvim/plugin/diffview.lua
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
line 0: sourcing "/home/ahmed/.local/share/nvim/lazy/neogit/plugin/neogit.lua"
finished sourcing /home/ahmed/.local/share/nvim/lazy/neogit/plugin/neogit.lua
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
Neogit HEAD requires at least NVIM 0.10 - Pin to tag 'v0.0.1' for NVIM 0.9.x
line 0: sourcing "/home/ahmed/.local/share/nvim/lazy/render-markdown/plugin/render-markdown.lua"
finished sourcing /home/ahmed/.local/share/nvim/lazy/render-markdown/plugin/render-markdown.lua
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
line 0: sourcing "/usr/share/nvim/runtime/plugin/editorconfig.lua"
finished sourcing /usr/share/nvim/runtime/plugin/editorconfig.lua
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
line 0: sourcing "/usr/share/nvim/runtime/plugin/gzip.vim"
finished sourcing /usr/share/nvim/runtime/plugin/gzip.vim
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
line 0: sourcing "/usr/share/nvim/runtime/plugin/health.vim"
finished sourcing /usr/share/nvim/runtime/plugin/health.vim
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
line 0: sourcing "/usr/share/nvim/runtime/plugin/man.lua"
finished sourcing /usr/share/nvim/runtime/plugin/man.lua
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
line 0: sourcing "/usr/share/nvim/runtime/plugin/matchit.vim"
not found in 'packpath': "pack/*/start/matchit"
line 3: sourcing "/usr/share/nvim/runtime/pack/dist/opt/matchit/plugin/matchit.vim"
finished sourcing /usr/share/nvim/runtime/pack/dist/opt/matchit/plugin/matchit.vim
continuing in /usr/share/nvim/runtime/plugin/matchit.vim
finished sourcing /usr/share/nvim/runtime/plugin/matchit.vim
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
line 0: sourcing "/usr/share/nvim/runtime/plugin/matchparen.vim"
finished sourcing /usr/share/nvim/runtime/plugin/matchparen.vim
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
line 0: sourcing "/usr/share/nvim/runtime/plugin/netrwPlugin.vim"
finished sourcing /usr/share/nvim/runtime/plugin/netrwPlugin.vim
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
line 0: sourcing "/usr/share/nvim/runtime/plugin/nvim.lua"
finished sourcing /usr/share/nvim/runtime/plugin/nvim.lua
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
line 0: sourcing "/usr/share/nvim/runtime/plugin/rplugin.vim"
finished sourcing /usr/share/nvim/runtime/plugin/rplugin.vim
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
line 0: sourcing "/usr/share/nvim/runtime/plugin/shada.vim"
finished sourcing /usr/share/nvim/runtime/plugin/shada.vim
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
line 0: sourcing "/usr/share/nvim/runtime/plugin/spellfile.vim"
finished sourcing /usr/share/nvim/runtime/plugin/spellfile.vim
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
line 0: sourcing "/usr/share/nvim/runtime/plugin/tarPlugin.vim"
finished sourcing /usr/share/nvim/runtime/plugin/tarPlugin.vim
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
line 0: sourcing "/usr/share/nvim/runtime/plugin/tohtml.vim"
finished sourcing /usr/share/nvim/runtime/plugin/tohtml.vim
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
line 0: sourcing "/usr/share/nvim/runtime/plugin/tutor.vim"
finished sourcing /usr/share/nvim/runtime/plugin/tutor.vim
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
line 0: sourcing "/usr/share/nvim/runtime/plugin/zipPlugin.vim"
finished sourcing /usr/share/nvim/runtime/plugin/zipPlugin.vim
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
line 0: sourcing "/home/ahmed/.local/share/nvim/lazy/indent-blankline.nvim/after/plugin/commands.lua"
finished sourcing /home/ahmed/.local/share/nvim/lazy/indent-blankline.nvim/after/plugin/commands.lua
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
line 0: sourcing "/home/ahmed/.local/share/nvim/lazy/cmp_luasnip/after/plugin/cmp_luasnip.lua"
finished sourcing /home/ahmed/.local/share/nvim/lazy/cmp_luasnip/after/plugin/cmp_luasnip.lua
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
line 0: sourcing "/home/ahmed/.local/share/nvim/lazy/cmp-cmdline/after/plugin/cmp_cmdline.lua"
finished sourcing /home/ahmed/.local/share/nvim/lazy/cmp-cmdline/after/plugin/cmp_cmdline.lua
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
line 0: sourcing "/home/ahmed/.local/share/nvim/lazy/cmp-path/after/plugin/cmp_path.lua"
finished sourcing /home/ahmed/.local/share/nvim/lazy/cmp-path/after/plugin/cmp_path.lua
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
line 0: sourcing "/home/ahmed/.local/share/nvim/lazy/cmp-buffer/after/plugin/cmp_buffer.lua"
finished sourcing /home/ahmed/.local/share/nvim/lazy/cmp-buffer/after/plugin/cmp_buffer.lua
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
line 0: sourcing "/home/ahmed/.local/share/nvim/lazy/cmp-nvim-lsp/after/plugin/cmp_nvim_lsp.lua"
finished sourcing /home/ahmed/.local/share/nvim/lazy/cmp-nvim-lsp/after/plugin/cmp_nvim_lsp.lua
continuing in nvim_exec2() called at /home/ahmed/.config/nvim/init.lua:0
--- Autocommands ---
--- Autocommands ---
lualine BufEnter
* lua require'lualine.components.branch.git_branch'.find_git_dir()
Last set from ~/.config/nvim/vim/_editor.lua line 341
--- Autocommands ---
--- Autocommands ---
Error detected while processing /home/ahmed/.config/nvim/init.lua:
E5113: Error while calling lua chunk: ...ocal/share/nvim/lazy/obsidian.nvim/lua/obsidian/path.lua:402: FileNotFoundError: /Users/omerxx/Obsidian/Notes
stack traceback:
[C]: in function 'error'
...ocal/share/nvim/lazy/obsidian.nvim/lua/obsidian/path.lua:402: in function 'resolve'
...share/nvim/lazy/obsidian.nvim/lua/obsidian/workspace.lua:79: in function 'new_from_spec'
...share/nvim/lazy/obsidian.nvim/lua/obsidian/workspace.lua:169: in function 'get_workspace_for_cwd'
...share/nvim/lazy/obsidian.nvim/lua/obsidian/workspace.lua:206: in function 'get_from_opts'
...al/share/nvim/lazy/obsidian.nvim/lua/obsidian/client.lua:93: in function 'new'
...ocal/share/nvim/lazy/obsidian.nvim/lua/obsidian/init.lua:95: in function 'setup'
.../ahmed/.config/nvim/lua/omerxx/lazy/plugins/obsidian.lua:1: in main chunk
[C]: in function 'require'
/home/ahmed/.config/nvim/lua/omerxx/init.lua:13: in main chunk
[C]: in function 'require'
/home/ahmed/.config/nvim/init.lua:2: in main chunk
finished sourcing /home/ahmed/.config/nvim/init.lua
sourcing "/usr/share/nvim/runtime/filetype.lua"
finished sourcing /usr/share/nvim/runtime/filetype.lua
sourcing "/usr/share/nvim/runtime/syntax/syntax.vim"
line 19: sourcing "/usr/share/nvim/runtime/syntax/synload.vim"
finished sourcing /usr/share/nvim/runtime/syntax/synload.vim
continuing in /usr/share/nvim/runtime/syntax/syntax.vim
finished sourcing /usr/share/nvim/runtime/syntax/syntax.vim
Reading ShaDa file "/home/ahmed/.local/state/nvim/shada/main.shada" info marks oldfiles
Neogit HEAD requires at least NVIM 0.10 - Pin to tag 'v0.0.1' for NVIM 0.9.x
Error detected while processing /home/ahmed/.config/nvim/init.lua:
E5113: Error while calling lua chunk: ...ocal/share/nvim/lazy/obsidian.nvim/lua/obsidian/path.lua:402: FileNotFoundError: /Users/omerxx/Obsidian/Notes
stack traceback:
[C]: in function 'error'
...ocal/share/nvim/lazy/obsidian.nvim/lua/obsidian/path.lua:402: in function 'resolve'
...share/nvim/lazy/obsidian.nvim/lua/obsidian/workspace.lua:79: in function 'new_from_spec'
...share/nvim/lazy/obsidian.nvim/lua/obsidian/workspace.lua:169: in function 'get_workspace_for_cwd'
...share/nvim/lazy/obsidian.nvim/lua/obsidian/workspace.lua:206: in function 'get_from_opts'
...al/share/nvim/lazy/obsidian.nvim/lua/obsidian/client.lua:93: in function 'new'
...ocal/share/nvim/lazy/obsidian.nvim/lua/obsidian/init.lua:95: in function 'setup'
.../ahmed/.config/nvim/lua/omerxx/lazy/plugins/obsidian.lua:1: in main chunk
[C]: in function 'require'
/home/ahmed/.config/nvim/lua/omerxx/init.lua:13: in main chunk
[C]: in function 'require'
/home/ahmed/.config/nvim/init.lua:2: in main chunk
sourcing "/usr/share/nvim/runtime/autoload/provider/clipboard.vim"
finished sourcing /usr/share/nvim/runtime/autoload/provider/clipboard.vim
--- Terminal info --- {{{
&term: tmux-256color
Description: tmux with 256 colors
Aliases: tmux-256color
Boolean capabilities:
auto_left_margin bw = false
auto_right_margin am = true
no_esc_ctlc xsb = false
ceol_standout_glitch xhp = false
eat_newline_glitch xenl = true
erase_overstrike eo = false
generic_type gn = false
hard_copy hc = false
has_meta_key km = true
has_status_line hs = true
insert_null_glitch in = false
memory_above da = false
memory_below db = false
move_insert_mode mir = true
move_standout_mode msgr = true
over_strike os = false
status_line_esc_ok eslok = false
dest_tabs_magic_smso xt = false
tilde_glitch hz = false
transparent_underline ul = false
xon_xoff xon = false
needs_xon_xoff nxon = false
prtr_silent mc5i = false
hard_cursor chts = false
non_rev_rmcup nrrmc = false
no_pad_char npc = false
non_dest_scroll_region ndscr = false
can_change ccc = false
back_color_erase bce = false
hue_lightness_saturation hls = false
col_addr_glitch xhpa = false
cr_cancels_micro_mode crxm = false
has_print_wheel daisy = false
row_addr_glitch xvpa = false
semi_auto_right_margin sam = false
cpi_changes_res cpix = false
lpi_changes_res lpix = false
backspaces_with_bs OTbs = true
crt_no_scrolling OTns = false
no_correctly_working_cr OTnc = false
gnu_has_meta_key OTMT = false
linefeed_is_newline OTNL = false
has_hardware_tabs OTpt = true
return_does_clr_eol OTxr = false
Numeric capabilities:
columns cols = 80
init_tabs it = 8
lines lines = 24
lines_of_memory lm = -1
magic_cookie_glitch xmc = -1
padding_baud_rate pb = -1
virtual_terminal vt = -1
width_status_line wsl = -1
num_labels nlab = -1
label_height lh = -1
label_width lw = -1
max_attributes ma = -1
maximum_windows wnum = -1
max_colors colors = 256
max_pairs pairs = 65536
no_color_video ncv = -1
buffer_capacity bufsz = -1
dot_vert_spacing spinv = -1
dot_horz_spacing spinh = -1
max_micro_address maddr = -1
max_micro_jump mjump = -1
micro_col_size mcs = -1
micro_line_size mls = -1
number_of_pins npins = -1
output_res_char orc = -1
output_res_line orl = -1
output_res_horz_inch orhi = -1
output_res_vert_inch orvi = -1
print_rate cps = -1
wide_char_size widcs = -1
buttons btns = -1
bit_image_entwining bitwin = -1
bit_image_type bitype = -1
magic_cookie_glitch_ul OTug = -1
carriage_return_delay OTdC = -1
new_line_delay OTdN = -1
backspace_delay OTdB = -1
horizontal_tab_delay OTdT = -1
number_of_function_keys OTkn = -1
String capabilities:
back_tab cbt = ^[[Z
bell bel = ^G
carriage_return cr = ^M
change_scroll_region csr = ^[[%i%p1%d;%p2%dr
clear_all_tabs tbc = ^[[3g
clear_screen clear = ^[[H^[[J
clr_eol el = ^[[K
clr_eos ed = ^[[J
column_address hpa = ^[[%i%p1%dG
cursor_address cup = ^[[%i%p1%d;%p2%dH
cursor_down cud1 = ^@
cursor_home home = ^[[H
cursor_invisible civis = ^[[?25l
cursor_left cub1 = ^H
cursor_normal cnorm = ^[[34h^[[?25h
cursor_right cuf1 = ^[[C
cursor_up cuu1 = ^[M
cursor_visible cvvis = ^[[34l
delete_character dch1 = ^[[P
delete_line dl1 = ^[[M
dis_status_line dsl = ^[]0;^G
enter_alt_charset_mode smacs = ^N
enter_blink_mode blink = ^[[5m
enter_bold_mode bold = ^[[1m
enter_ca_mode smcup = ^[[?1049h
enter_dim_mode dim = ^[[2m
enter_insert_mode smir = ^[[4h
enter_secure_mode invis = ^[[8m
enter_reverse_mode rev = ^[[7m
enter_standout_mode smso = ^[[7m
enter_underline_mode smul = ^[[4m
exit_alt_charset_mode rmacs = ^O
exit_attribute_mode sgr0 = ^[[m^O
exit_ca_mode rmcup = ^[[?1049l
exit_insert_mode rmir = ^[[4l
exit_standout_mode rmso = ^[[27m
exit_underline_mode rmul = ^[[24m
flash_screen flash = ^[g
from_status_line fsl = ^G
init_2string is2 = ^[)0
insert_line il1 = ^[[L
key_backspace kbs = ^?
key_dc kdch1 = ^[[3~
key_down kcud1 = ^[OB
key_f1 kf1 = ^[OP
key_f10 kf10 = ^[[21~
key_f2 kf2 = ^[OQ
key_f3 kf3 = ^[OR
key_f4 kf4 = ^[OS
key_f5 kf5 = ^[[15~
key_f6 kf6 = ^[[17~
key_f7 kf7 = ^[[18~
key_f8 kf8 = ^[[19~
key_f9 kf9 = ^[[20~
key_home khome = ^[[1~
key_ic kich1 = ^[[2~
key_left kcub1 = ^[OD
key_npage knp = ^[[6~
key_ppage kpp = ^[[5~
key_right kcuf1 = ^[OC
key_sf kind = ^[[1;2B
key_sr kri = ^[[1;2A
key_up kcuu1 = ^[OA
keypad_local rmkx = ^[[?1l^[>
keypad_xmit smkx = ^[[?1h^[=
newline nel = ^[E
parm_dch dch = ^[[%p1%dP
parm_delete_line dl = ^[[%p1%dM
parm_down_cursor cud = ^[[%p1%dB
parm_ich ich = ^[[%p1%d@
parm_index indn = ^[[%p1%dS
parm_insert_line il = ^[[%p1%dL
parm_left_cursor cub = ^[[%p1%dD
parm_right_cursor cuf = ^[[%p1%dC
parm_rindex rin = ^[[%p1%dT
parm_up_cursor cuu = ^[[%p1%dA
reset_2string rs2 = ^[c^[[?1000l^[[?25h
restore_cursor rc = ^[8
row_address vpa = ^[[%i%p1%dd
save_cursor sc = ^[7
scroll_forward ind = ^@
scroll_reverse ri = ^[M
set_attributes sgr = ^[[0%?%p6%t;1%;%?%p2%t;4%;%?%p1%p3%|%t;7%;%?%p4%t;5%;%?%p5%t;2%;%?%p7%t;8%;m%?%p9%t^N%e^O%;
set_tab hts = ^[H
tab ht =