since past few days(after installation of nvf) i was able to load nvf without any error with the below configuration
nvf.nix
editors/nvf/default.nix
{ config, pkgs, … }:
{
vim = {
# Theme settings
theme = {
enable = true;
name = “catppuccin”;
style = “macchiato”; # latte", “frappe”, “macchiato”, “mocha”
};
# dashboard.dashboard-nvim.enable = true;
# UI enhancements
statusline.lualine.enable = true;
statusline.lualine.theme = “palenight”;
binds.whichKey = {
enable = true;
setupOpts.notify = true;
setupOpts.preset = "helix"; # classic, modern, helix
setupOpts.win.border = "rounded";
};
tabline.nvimBufferline = {
enable = true;
setupOpts.options = {
mode = "buffers"; # tabs, buffers
close_icon = "";
color_icons = true ;
indicator.style = "icon" ; # icon, underline, none
};
};
telescope = {
enable = true;
setupOpts = {
defaults.color_devicons = true;
# pickers.find_files.find_command = ["h" "j" "k" "l" ";" "u" "n"];
pickers.find_files.find_command = ["${pkgs.fd}/bin/fd" "--type=file"];
};
};
filetree.nvimTree = {
enable = true;
mappings.toggle = " t";
setupOpts = {
hijack_cursor = true;
actions.open_file.window_picker = {
enable = true;
chars = "ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890";
exclude.buftype = [
"nofile"
"terminal"
"help"
];
exclude.filetype = [
"notify"
"packer"
"qf"
"diff"
"fugitive"
"fugitiveblame"
];
};
};
};
# Notify
notify.nvim-notify = {
enable = true;
setupOpts = {
timeout = 1500;
render = "compact"; # “default”, “minimal”, “simple”, “compact”, “wrapped-compact” or (luaInline)
position = "top_right"; # “top_left”, “top_right”, “bottom_left”, “bottom_right”
icons = {
DEBUG = "";
ERROR = "";
INFO = "";
TRACE = "";
WARN = "";
};
background_colour = "background_colour"; # try to find any other values
stages = "fade_in_slide_out";
};
};
# Snacks
utility.snacks-nvim = {
enable = true;
setupOpts = {
bigfile.enable = true;
dashboard.enable = true;
};
};
# Editor features
autopairs.nvim-autopairs.enable = true;
comments.comment-nvim.enable = true;
useSystemClipboard = true;
autocomplete.nvim-cmp.enable = true;
git.gitsigns.enable = true;
utility.motion.hop.enable = true; # Quick navigation
utility.surround.enable = true;
fzf-lua = {
enable = true;
profile = "telescope";
};
# Terminal integration
terminal.toggleterm = {
enable = true; # might not need afte snacks being used
setupOpts.direction = "float"; # -----next change
};
# Language support
lsp.enable = true;
languages = {
# enableLSP = true;
enableTreesitter = true;
enableFormat = true;
nix.enable = true;
nix.lsp.server = "nixd";
clang.enable = true;
rust.enable = true;
python.enable = true;
markdown.enable = true;
};
debugger.nvim-dap = {
enable = true; # Enable Debug Adapter Protocol
ui.enable = true; # Enable DAP UI (nvim-dap-ui)
};
};
}
without any changes to this file, all of a sudden im getting this error at the start of the editor.
Error detected while processing VIMINIT…script /nix/store/g9cj33ia7ga8ijyr5dz3bflw1rmwac4n-neovim-pack-dir/init.lua…nvim_exec2() called at /nix/store/g9cj33ia7ga8ijyr5dz3bflw1rmwac4n-neovim-pack-dir/init.lua:0:
E216: No such group or event: FileExplorer *
Error detected while processing VIMINIT…script /nix/store/g9cj33ia7ga8ijyr5dz3bflw1rmwac4n-neovim-pack-dir/init.lua:
E5113: Error while calling lua chunk: /nix/store/3hl0j265w6ghvrnj1srs36ki5z5a53m3-init.lua:757: attempt to index a nil value
stack traceback:
/nix/store/3hl0j265w6ghvrnj1srs36ki5z5a53m3-init.lua:757: in main chunk
[C]: in function ‘dofile’
…9cj33ia7ga8ijyr5dz3bflw1rmwac4n-neovim-pack-dir/init.lua:4: in main chunk
complete log
sourcing “/nix/store/j28bnn9bjn4wf8zlhw3lddfk42p4f0i8-neovim-unwrapped-0.10.2/share/nvim/runtime/ftplugin.vim”
finished sourcing /nix/store/j28bnn9bjn4wf8zlhw3lddfk42p4f0i8-neovim-unwrapped-0.10.2/share/nvim/runtime/ftplugin.vim
sourcing “/nix/store/j28bnn9bjn4wf8zlhw3lddfk42p4f0i8-neovim-unwrapped-0.10.2/share/nvim/runtime/indent.vim”
finished sourcing /nix/store/j28bnn9bjn4wf8zlhw3lddfk42p4f0i8-neovim-unwrapped-0.10.2/share/nvim/runtime/indent.vim
could not source “/nix/store/71hy407vp9nv66dwcwy1hhahkyqbng1y-konsole-23.08.5/etc/xdg/nvim/sysinit.vim”
could not source “/nix/store/ragqdadvcfg7akj2kvl49vr79ahbckxn-kio-5.116.0/etc/xdg/nvim/sysinit.vim”
could not source “/nix/store/j42h80vs161fd14hwzpgra4zz8kf6lzc-kservice-5.116.0-bin/etc/xdg/nvim/sysinit.vim”
could not source “/nix/store/cxxhbdhf8iwbydar6dj46lfbg9fvlzcd-kxmlgui-5.116.0-bin/etc/xdg/nvim/sysinit.vim”
could not source “/nix/store/pailpw1c8zrfa0pfxcjq2shrvf5liw7c-plasma-workspace-6.2.5/etc/xdg/nvim/sysinit.vim”
could not source “/nix/store/sk7f18q9p3md59bzh1l8kijswmbpbh2y-kglobalacceld-6.2.5/etc/xdg/nvim/sysinit.vim”
could not source “/nix/store/95xkc6k4svfmw2rhn4a5f372rsr1sr11-baloo-6.8.0/etc/xdg/nvim/sysinit.vim”
could not source “/home/arvindh/.config/kdedefaults/nvim/sysinit.vim”
could not source “/etc/xdg/nvim/sysinit.vim”
could not source “/home/arvindh/.nix-profile/etc/xdg/nvim/sysinit.vim”
could not source “/nix/profile/etc/xdg/nvim/sysinit.vim”
could not source “/home/arvindh/.local/state/nix/profile/etc/xdg/nvim/sysinit.vim”
could not source “/etc/profiles/per-user/arvindh/etc/xdg/nvim/sysinit.vim”
could not source “/nix/var/nix/profiles/default/etc/xdg/nvim/sysinit.vim”
could not source “/run/current-system/sw/etc/xdg/nvim/sysinit.vim”
could not source “$VIM/sysinit.vim”
line 0: sourcing “/nix/store/g9cj33ia7ga8ijyr5dz3bflw1rmwac4n-neovim-pack-dir/init.lua”
line 0: sourcing “/nix/store/g9cj33ia7ga8ijyr5dz3bflw1rmwac4n-neovim-pack-dir/pack/mnw/start/catppuccin/colors/catppuccin.vim”
finished sourcing /nix/store/g9cj33ia7ga8ijyr5dz3bflw1rmwac4n-neovim-pack-dir/pack/mnw/start/catppuccin/colors/catppuccin.vim
continuing in /nix/store/g9cj33ia7ga8ijyr5dz3bflw1rmwac4n-neovim-pack-dir/init.lua
— Autocommands —
— Autocommands —
not found in runtime path: “lua/lualine/components/.lua”
not found in runtime path: “lua/lualine/components//init.lua”
— Autocommands —
lualine BufEnter
* lua require’lualine.components.diff.git_diff’.update_diff_args()
Last set from ~/vim/_editor.lua
not found in runtime path: “lua/lualine/components/.lua”
not found in runtime path: “lua/lualine/components//init.lua”
not found in runtime path: “lua/lualine/components/.lua”
not found in runtime path: “lua/lualine/components//init.lua”
not found in runtime path: “lua/lualine/components/.lua”
not found in runtime path: “lua/lualine/components//init.lua”
not found in ‘packpath’: “pack//start/nvim-tree-lua"
Error detected while processing VIMINIT…script /nix/store/g9cj33ia7ga8ijyr5dz3bflw1rmwac4n-neovim-pack-dir/init.lua…nvim_exec2() called at /nix/store/g9cj33ia7ga8ijyr5dz3bflw1rmwac4n-neovim-pack-dir/init.lua:0:
E216: No such group or event: FileExplorer *
Error detected while processing VIMINIT…script /nix/store/g9cj33ia7ga8ijyr5dz3bflw1rmwac4n-neovim-pack-dir/init.lua:
E5113: Error while calling lua chunk: /nix/store/3hl0j265w6ghvrnj1srs36ki5z5a53m3-init.lua:757: attempt to index a nil value
stack traceback:
/nix/store/3hl0j265w6ghvrnj1srs36ki5z5a53m3-init.lua:757: in main chunk
[C]: in function ‘dofile’
…9cj33ia7ga8ijyr5dz3bflw1rmwac4n-neovim-pack-dir/init.lua:4: in main chunk
finished sourcing /nix/store/g9cj33ia7ga8ijyr5dz3bflw1rmwac4n-neovim-pack-dir/init.lua
continuing in VIMINIT
sourcing “/nix/store/j28bnn9bjn4wf8zlhw3lddfk42p4f0i8-neovim-unwrapped-0.10.2/share/nvim/runtime/filetype.lua”
not found in runtime path: "ftdetect/.{vim,lua}”
finished sourcing /nix/store/j28bnn9bjn4wf8zlhw3lddfk42p4f0i8-neovim-unwrapped-0.10.2/share/nvim/runtime/filetype.lua
sourcing “/nix/store/j28bnn9bjn4wf8zlhw3lddfk42p4f0i8-neovim-unwrapped-0.10.2/share/nvim/runtime/syntax/syntax.vim”
line 20: sourcing “/nix/store/j28bnn9bjn4wf8zlhw3lddfk42p4f0i8-neovim-unwrapped-0.10.2/share/nvim/runtime/syntax/synload.vim”
finished sourcing /nix/store/j28bnn9bjn4wf8zlhw3lddfk42p4f0i8-neovim-unwrapped-0.10.2/share/nvim/runtime/syntax/synload.vim
continuing in /nix/store/j28bnn9bjn4wf8zlhw3lddfk42p4f0i8-neovim-unwrapped-0.10.2/share/nvim/runtime/syntax/syntax.vim
Executing FileType Autocommands for “*”
autocommand if !exists(‘b:ts_highlight’) | 0verbose exe “set syntax=” . expand(“”) | endif
finished sourcing /nix/store/j28bnn9bjn4wf8zlhw3lddfk42p4f0i8-neovim-unwrapped-0.10.2/share/nvim/runtime/syntax/syntax.vim
sourcing “/nix/store/j28bnn9bjn4wf8zlhw3lddfk42p4f0i8-neovim-unwrapped-0.10.2/share/nvim/runtime/plugin/gzip.vim”
finished sourcing /nix/store/j28bnn9bjn4wf8zlhw3lddfk42p4f0i8-neovim-unwrapped-0.10.2/share/nvim/runtime/plugin/gzip.vim
sourcing “/nix/store/j28bnn9bjn4wf8zlhw3lddfk42p4f0i8-neovim-unwrapped-0.10.2/share/nvim/runtime/plugin/matchit.vim”
not found in ‘packpath’: “pack//start/matchit"
line 3: sourcing “/nix/store/j28bnn9bjn4wf8zlhw3lddfk42p4f0i8-neovim-unwrapped-0.10.2/share/nvim/runtime/pack/dist/opt/matchit/plugin/matchit.vim”
finished sourcing /nix/store/j28bnn9bjn4wf8zlhw3lddfk42p4f0i8-neovim-unwrapped-0.10.2/share/nvim/runtime/pack/dist/opt/matchit/plugin/matchit.vim
continuing in /nix/store/j28bnn9bjn4wf8zlhw3lddfk42p4f0i8-neovim-unwrapped-0.10.2/share/nvim/runtime/plugin/matchit.vim
finished sourcing /nix/store/j28bnn9bjn4wf8zlhw3lddfk42p4f0i8-neovim-unwrapped-0.10.2/share/nvim/runtime/plugin/matchit.vim
sourcing “/nix/store/j28bnn9bjn4wf8zlhw3lddfk42p4f0i8-neovim-unwrapped-0.10.2/share/nvim/runtime/plugin/matchparen.vim”
finished sourcing /nix/store/j28bnn9bjn4wf8zlhw3lddfk42p4f0i8-neovim-unwrapped-0.10.2/share/nvim/runtime/plugin/matchparen.vim
sourcing “/nix/store/j28bnn9bjn4wf8zlhw3lddfk42p4f0i8-neovim-unwrapped-0.10.2/share/nvim/runtime/plugin/netrwPlugin.vim”
finished sourcing /nix/store/j28bnn9bjn4wf8zlhw3lddfk42p4f0i8-neovim-unwrapped-0.10.2/share/nvim/runtime/plugin/netrwPlugin.vim
sourcing “/nix/store/j28bnn9bjn4wf8zlhw3lddfk42p4f0i8-neovim-unwrapped-0.10.2/share/nvim/runtime/plugin/rplugin.vim”
1: ~/vim/_defaults.lua
2: /nix/store/j28bnn9bjn4wf8zlhw3lddfk42p4f0i8-neovim-unwrapped-0.10.2/share/nvim/runtime/ftplugin.vim
3: /nix/store/j28bnn9bjn4wf8zlhw3lddfk42p4f0i8-neovim-unwrapped-0.10.2/share/nvim/runtime/indent.vim
4: /nix/store/g9cj33ia7ga8ijyr5dz3bflw1rmwac4n-neovim-pack-dir/init.lua
5: /nix/store/klj8vjmai3sy9a7r9wdj46gf87rgxfm4-catppuccin-0-unstable-b7bbdf93b42866f166af98d39a2563eedb7cabac/lua/catppuccin/init.lua
6: /nix/store/klj8vjmai3sy9a7r9wdj46gf87rgxfm4-catppuccin-0-unstable-b7bbdf93b42866f166af98d39a2563eedb7cabac/colors/catppuccin.vim
7: ~/.cache/nvf/catppuccin/macchiato
8: /nix/store/3hl0j265w6ghvrnj1srs36ki5z5a53m3-init.lua
9: /nix/store/2nfjir60a6xii7rk39k1594mhl4wr53l-lz-n-0-unstable-a10519ab5940a5364560043df9dc3db328e27f98/lua/lz/n/handler/keys.lua
10: /nix/store/2nfjir60a6xii7rk39k1594mhl4wr53l-lz-n-0-unstable-a10519ab5940a5364560043df9dc3db328e27f98/lua/lz/n/handler/cmd.lua
11: /nix/store/2nfjir60a6xii7rk39k1594mhl4wr53l-lz-n-0-unstable-a10519ab5940a5364560043df9dc3db328e27f98/lua/lz/n/handler/event.lua
12: /nix/store/bvlf1iccfzgfm87mssps3lz7872ic56p-nvim-autopairs-0-unstable-4d74e75913832866aa7de35e4202463ddf6efd1b/lua/nvim-autopairs.lua
13: /nix/store/j28bnn9bjn4wf8zlhw3lddfk42p4f0i8-neovim-unwrapped-0.10.2/share/nvim/runtime/lua/vim/lsp.lua
14: /nix/store/lh9h86mfm3qlpw8akh14jkf36crp1g0n-nvim-lspconfig-0-unstable-46434074f188e6bfccf9d9153dd8be6b1381498b/lua/lspconfig/configs.lua
15: /nix/store/nwdwc7k918p8f14a8ygh5qdiqvn6ih1h-conform-nvim-0-unstable-372fc521f8421b7830ea6db4d6ea3bae1c77548c/lua/conform/init.lua
16: /nix/store/bcq96kbmj448mk1wl5jz78nb4x53zz6c-gitsigns-nvim-0-unstable-1796c7cedfe7e5dd20096c5d7b8b753d8f8d22eb/lua/gitsigns.lua
17: /nix/store/bcq96kbmj448mk1wl5jz78nb4x53zz6c-gitsigns-nvim-0-unstable-1796c7cedfe7e5dd20096c5d7b8b753d8f8d22eb/lua/gitsigns/highlight.lua
18: /nix/store/9d44krfb42591py9v05504qb5y18bxmf-hop-nvim-0-unstable-1a1eceafe54b5081eae4cb91c723abd1d450f34b/lua/hop/highlight.lua
19: ~/vim/_editor.lua
20: /nix/store/7nhj4aqsqn1n01ilw33xi947g33vk0jv-lualine-nvim-0-unstable-15884cee63a8c205334ab13ab1c891cd4d27101a/lua/lualine/utils/nvim_opts.lua
21: /nix/store/85jris8gd8hfrifxmwdq5lsl5lxhdrgv-nvim-dap-0-unstable-8df427aeba0a06c6577dc3ab82de3076964e3b8d/lua/dap.lua
22: /nix/store/2nfjir60a6xii7rk39k1594mhl4wr53l-lz-n-0-unstable-a10519ab5940a5364560043df9dc3db328e27f98/lua/lz/n/loader.lua
23: /nix/store/l35gr1w03s4vfb2szjvsf2zapq2wr2ay-nvim-tree-lua-0-unstable-582ae48c9e43d2bcd55dfcc8e2e7a1f29065d924/lua/nvim-tree/appearance/init.lua
24: /nix/store/kqg9i2k2hpdcjr01v1sfc4bwpz4r2pjj-nvim-web-devicons-0-unstable-2c2b4eafce6cdd0cb165036faa17396eff18f847/lua/nvim-web-devicons.lua
25: /nix/store/l35gr1w03s4vfb2szjvsf2zapq2wr2ay-nvim-tree-lua-0-unstable-582ae48c9e43d2bcd55dfcc8e2e7a1f29065d924/lua/nvim-tree.lua
26: /nix/store/l35gr1w03s4vfb2szjvsf2zapq2wr2ay-nvim-tree-lua-0-unstable-582ae48c9e43d2bcd55dfcc8e2e7a1f29065d924/lua/nvim-tree/commands.lua
27: /nix/store/qqihlq4a67w973r02541iviznd9hzz4n-nvim-bufferline-lua-0-unstable-655133c3b4c3e5e05ec549b9f8cc2894ac6f51b3/lua/bufferline/groups.lua
28: /nix/store/qqihlq4a67w973r02541iviznd9hzz4n-nvim-bufferline-lua-0-unstable-655133c3b4c3e5e05ec549b9f8cc2894ac6f51b3/lua/bufferline/highlights.lua
29: /nix/store/qqihlq4a67w973r02541iviznd9hzz4n-nvim-bufferline-lua-0-unstable-655133c3b4c3e5e05ec549b9f8cc2894ac6f51b3/lua/bufferline.lua
30: /nix/store/bz4sk7jhag7h8wzv8n64mh4nhnqp8c0p-snacks-nvim-0-unstable-5eac729fa290248acfe10916d92a5ed5e5c0f9ed/lua/snacks/init.lua
31: /nix/store/pxj1gbqa0b85667bga1cad2yhnfb5076-which-key-nvim-0-unstable-370ec46f710e058c9c1646273e6b225acf47cbed/lua/which-key/config.lua
32: /nix/store/j28bnn9bjn4wf8zlhw3lddfk42p4f0i8-neovim-unwrapped-0.10.2/share/nvim/runtime/filetype.lua
33: /nix/store/j28bnn9bjn4wf8zlhw3lddfk42p4f0i8-neovim-unwrapped-0.10.2/share/nvim/runtime/syntax/syntax.vim
34: /nix/store/j28bnn9bjn4wf8zlhw3lddfk42p4f0i8-neovim-unwrapped-0.10.2/share/nvim/runtime/syntax/synload.vim
35: /nix/store/j28bnn9bjn4wf8zlhw3lddfk42p4f0i8-neovim-unwrapped-0.10.2/share/nvim/runtime/plugin/gzip.vim
36: /nix/store/j28bnn9bjn4wf8zlhw3lddfk42p4f0i8-neovim-unwrapped-0.10.2/share/nvim/runtime/plugin/matchit.vim
37: /nix/store/j28bnn9bjn4wf8zlhw3lddfk42p4f0i8-neovim-unwrapped-0.10.2/share/nvim/runtime/pack/dist/opt/matchit/plugin/matchit.vim
38: /nix/store/j28bnn9bjn4wf8zlhw3lddfk42p4f0i8-neovim-unwrapped-0.10.2/share/nvim/runtime/plugin/matchparen.vim
39: /nix/store/j28bnn9bjn4wf8zlhw3lddfk42p4f0i8-neovim-unwrapped-0.10.2/share/nvim/runtime/plugin/netrwPlugin.vim
40: /nix/store/j28bnn9bjn4wf8zlhw3lddfk42p4f0i8-neovim-unwrapped-0.10.2/share/nvim/runtime/plugin/rplugin.vim
finished sourcing /nix/store/j28bnn9bjn4wf8zlhw3lddfk42p4f0i8-neovim-unwrapped-0.10.2/share/nvim/runtime/plugin/rplugin.vim
sourcing “/nix/store/j28bnn9bjn4wf8zlhw3lddfk42p4f0i8-neovim-unwrapped-0.10.2/share/nvim/runtime/plugin/shada.vim”
finished sourcing /nix/store/j28bnn9bjn4wf8zlhw3lddfk42p4f0i8-neovim-unwrapped-0.10.2/share/nvim/runtime/plugin/shada.vim
sourcing “/nix/store/j28bnn9bjn4wf8zlhw3lddfk42p4f0i8-neovim-unwrapped-0.10.2/share/nvim/runtime/plugin/spellfile.vim”
finished sourcing /nix/store/j28bnn9bjn4wf8zlhw3lddfk42p4f0i8-neovim-unwrapped-0.10.2/share/nvim/runtime/plugin/spellfile.vim
sourcing “/nix/store/j28bnn9bjn4wf8zlhw3lddfk42p4f0i8-neovim-unwrapped-0.10.2/share/nvim/runtime/plugin/tarPlugin.vim”
finished sourcing /nix/store/j28bnn9bjn4wf8zlhw3lddfk42p4f0i8-neovim-unwrapped-0.10.2/share/nvim/runtime/plugin/tarPlugin.vim
sourcing “/nix/store/j28bnn9bjn4wf8zlhw3lddfk42p4f0i8-neovim-unwrapped-0.10.2/share/nvim/runtime/plugin/tutor.vim”
finished sourcing /nix/store/j28bnn9bjn4wf8zlhw3lddfk42p4f0i8-neovim-unwrapped-0.10.2/share/nvim/runtime/plugin/tutor.vim
sourcing “/nix/store/j28bnn9bjn4wf8zlhw3lddfk42p4f0i8-neovim-unwrapped-0.10.2/share/nvim/runtime/plugin/zipPlugin.vim”
finished sourcing /nix/store/j28bnn9bjn4wf8zlhw3lddfk42p4f0i8-neovim-unwrapped-0.10.2/share/nvim/runtime/plugin/zipPlugin.vim
sourcing “/nix/store/j28bnn9bjn4wf8zlhw3lddfk42p4f0i8-neovim-unwrapped-0.10.2/share/nvim/runtime/plugin/editorconfig.lua”
finished sourcing /nix/store/j28bnn9bjn4wf8zlhw3lddfk42p4f0i8-neovim-unwrapped-0.10.2/share/nvim/runtime/plugin/editorconfig.lua
sourcing “/nix/store/j28bnn9bjn4wf8zlhw3lddfk42p4f0i8-neovim-unwrapped-0.10.2/share/nvim/runtime/plugin/man.lua”
finished sourcing /nix/store/j28bnn9bjn4wf8zlhw3lddfk42p4f0i8-neovim-unwrapped-0.10.2/share/nvim/runtime/plugin/man.lua
sourcing “/nix/store/j28bnn9bjn4wf8zlhw3lddfk42p4f0i8-neovim-unwrapped-0.10.2/share/nvim/runtime/plugin/osc52.lua”
finished sourcing /nix/store/j28bnn9bjn4wf8zlhw3lddfk42p4f0i8-neovim-unwrapped-0.10.2/share/nvim/runtime/plugin/osc52.lua
sourcing “/nix/store/j28bnn9bjn4wf8zlhw3lddfk42p4f0i8-neovim-unwrapped-0.10.2/share/nvim/runtime/plugin/tohtml.lua”
finished sourcing /nix/store/j28bnn9bjn4wf8zlhw3lddfk42p4f0i8-neovim-unwrapped-0.10.2/share/nvim/runtime/plugin/tohtml.lua
sourcing “/nix/store/iria930hhhvxp9gg9zxvvxkyq5x9kzv1-start-configdir/pack/mnw/start/bufdelete-nvim/plugin/bufdelete.lua”
finished sourcing /nix/store/iria930hhhvxp9gg9zxvvxkyq5x9kzv1-start-configdir/pack/mnw/start/bufdelete-nvim/plugin/bufdelete.lua
sourcing “/nix/store/iria930hhhvxp9gg9zxvvxkyq5x9kzv1-start-configdir/pack/mnw/start/conform-nvim/plugin/conform.lua”
finished sourcing /nix/store/iria930hhhvxp9gg9zxvvxkyq5x9kzv1-start-configdir/pack/mnw/start/conform-nvim/plugin/conform.lua
sourcing “/nix/store/iria930hhhvxp9gg9zxvvxkyq5x9kzv1-start-configdir/pack/mnw/start/gitsigns-nvim/plugin/gitsigns.lua”
finished sourcing /nix/store/iria930hhhvxp9gg9zxvvxkyq5x9kzv1-start-configdir/pack/mnw/start/gitsigns-nvim/plugin/gitsigns.lua
sourcing “/nix/store/iria930hhhvxp9gg9zxvvxkyq5x9kzv1-start-configdir/pack/mnw/start/hop-nvim/plugin/hop.vim”
finished sourcing /nix/store/iria930hhhvxp9gg9zxvvxkyq5x9kzv1-start-configdir/pack/mnw/start/hop-nvim/plugin/hop.vim
sourcing “/nix/store/iria930hhhvxp9gg9zxvvxkyq5x9kzv1-start-configdir/pack/mnw/start/nvim-dap/plugin/dap.lua”
finished sourcing /nix/store/iria930hhhvxp9gg9zxvvxkyq5x9kzv1-start-configdir/pack/mnw/start/nvim-dap/plugin/dap.lua
sourcing “/nix/store/iria930hhhvxp9gg9zxvvxkyq5x9kzv1-start-configdir/pack/mnw/start/nvim-lspconfig/plugin/lspconfig.lua”
finished sourcing /nix/store/iria930hhhvxp9gg9zxvvxkyq5x9kzv1-start-configdir/pack/mnw/start/nvim-lspconfig/plugin/lspconfig.lua
sourcing “/nix/store/iria930hhhvxp9gg9zxvvxkyq5x9kzv1-start-configdir/pack/mnw/start/nvim-treesitter/plugin/nvim-treesitter.lua”
finished sourcing /nix/store/iria930hhhvxp9gg9zxvvxkyq5x9kzv1-start-configdir/pack/mnw/start/nvim-treesitter/plugin/nvim-treesitter.lua
sourcing “/nix/store/iria930hhhvxp9gg9zxvvxkyq5x9kzv1-start-configdir/pack/mnw/start/nvim-web-devicons/plugin/nvim-web-devicons.vim”
finished sourcing /nix/store/iria930hhhvxp9gg9zxvvxkyq5x9kzv1-start-configdir/pack/mnw/start/nvim-web-devicons/plugin/nvim-web-devicons.vim
sourcing “/nix/store/iria930hhhvxp9gg9zxvvxkyq5x9kzv1-start-configdir/pack/mnw/start/plenary-nvim/plugin/plenary.vim”
finished sourcing /nix/store/iria930hhhvxp9gg9zxvvxkyq5x9kzv1-start-configdir/pack/mnw/start/plenary-nvim/plugin/plenary.vim
sourcing “/nix/store/iria930hhhvxp9gg9zxvvxkyq5x9kzv1-start-configdir/pack/mnw/start/snacks-nvim/plugin/snacks.lua”
finished sourcing /nix/store/iria930hhhvxp9gg9zxvvxkyq5x9kzv1-start-configdir/pack/mnw/start/snacks-nvim/plugin/snacks.lua
sourcing “/nix/store/iria930hhhvxp9gg9zxvvxkyq5x9kzv1-start-configdir/pack/mnw/start/which-key-nvim/plugin/which-key.lua”
finished sourcing /nix/store/iria930hhhvxp9gg9zxvvxkyq5x9kzv1-start-configdir/pack/mnw/start/which-key-nvim/plugin/which-key.lua
not found in ‘packpath’: "start/”
not found in runtime path: “plugin/**/"
Reading ShaDa file “/home/arvindh/.local/state/nvf/shada/main.shada” info marks oldfiles
Executing BufWinEnter Autocommands for "”
autocommand <Lua 127: /nix/store/g9cj33ia7ga8ijyr5dz3bflw1rmwac4n-neovim-pack-dir/pack/mnw/start/nvim-autopairs/lua/nvim-autopairs.lua:62>
Executing BufWinEnter Autocommands for “*”
autocommand autocmd SafeState * ++once call s:Highlight_Matching_Pair()
Executing BufEnter Autocommands for “*”
autocommand <Lua 126: /nix/store/g9cj33ia7ga8ijyr5dz3bflw1rmwac4n-neovim-pack-dir/pack/mnw/start/nvim-autopairs/lua/nvim-autopairs.lua:62>
Executing BufEnter Autocommands for “*”
autocommand lua require’lualine.components.diff.git_diff’.update_diff_args()
autocommand lua require’lualine.components.branch.git_branch’.find_git_dir()
Executing BufEnter Autocommands for “*”
autocommand <Lua 165: /nix/store/g9cj33ia7ga8ijyr5dz3bflw1rmwac4n-neovim-pack-dir/pack/mnw/opt/nvim-tree-lua/lua/nvim-tree.lua:101>
Executing BufEnter Autocommands for “*”
autocommand <Lua 188: /nix/store/g9cj33ia7ga8ijyr5dz3bflw1rmwac4n-neovim-pack-dir/pack/mnw/start/nvim-bufferline-lua/lua/bufferline.lua:141>
Executing BufEnter Autocommands for “*”
autocommand <Lua 195: /nix/store/g9cj33ia7ga8ijyr5dz3bflw1rmwac4n-neovim-pack-dir/pack/mnw/start/snacks-nvim/lua/snacks/init.lua:187>
Executing BufEnter Autocommands for “*”
autocommand sil call s:LocalBrowse(expand(“”))
Executing VimEnter Autocommands for “*”
autocommand <Lua 24: vim/_defaults.lua:0>
Executing VimEnter Autocommands for “*”
autocommand silent! autocmd! FileExplorer *
autocommand <Lua 49: /nix/store/3hl0j265w6ghvrnj1srs36ki5z5a53m3-init.lua:568>
chdir(/home/arvindh/.dotfiles)
[global] /home/arvindh/.dotfiles
Executing BufDelete Autocommands for “*”
autocommand <Lua 128: /nix/store/g9cj33ia7ga8ijyr5dz3bflw1rmwac4n-neovim-pack-dir/pack/mnw/start/nvim-autopairs/lua/nvim-autopairs.lua:67>
Executing FileType Autocommands for “*”
autocommand call s:LoadFTPlugin()
not found in runtime path: “ftplugin/NvimTree[.]{vim,lua} ftplugin/NvimTree_.{vim,lua} ftplugin/NvimTree/.{vim,lua}”
Executing FileType Autocommands for “*”
autocommand call s:LoadIndent()
not found in runtime path: “indent/NvimTree[.]{vim,lua}”
Executing FileType Autocommands for “*”
autocommand <Lua 129: /nix/store/g9cj33ia7ga8ijyr5dz3bflw1rmwac4n-neovim-pack-dir/pack/mnw/start/nvim-autopairs/lua/nvim-autopairs.lua:78>
Executing FileType Autocommands for “*”
autocommand if !exists(‘b:ts_highlight’) | 0verbose exe “set syntax=” . expand(“”) | endif
Executing FileType Autocommands for “*”
autocommand <Lua 239: /nix/store/g9cj33ia7ga8ijyr5dz3bflw1rmwac4n-neovim-pack-dir/pack/mnw/start/nvim-treesitter/lua/nvim-treesitter/configs.lua:132>
not found in runtime path: “parser/NvimTree."
Executing FileType Autocommands for "”
autocommand <Lua 240: /nix/store/g9cj33ia7ga8ijyr5dz3bflw1rmwac4n-neovim-pack-dir/pack/mnw/start/nvim-treesitter/lua/nvim-treesitter/configs.lua:132>
Executing FileType Autocommands for “*”
autocommand <Lua 241: /nix/store/g9cj33ia7ga8ijyr5dz3bflw1rmwac4n-neovim-pack-dir/pack/mnw/start/nvim-treesitter/lua/nvim-treesitter/configs.lua:132>
autocommand <Lua 198: vim/_editor.lua:0>
Executing UIEnter Autocommands for “*”
autocommand <Lua 115: vim/_editor.lua:0>
Executing UIEnter Autocommands for “*”
autocommand <Lua 196: /nix/store/g9cj33ia7ga8ijyr5dz3bflw1rmwac4n-neovim-pack-dir/pack/mnw/start/snacks-nvim/lua/snacks/init.lua:187>
sourcing “/nix/store/j28bnn9bjn4wf8zlhw3lddfk42p4f0i8-neovim-unwrapped-0.10.2/share/nvim/runtime/autoload/provider/clipboard.vim”
finished sourcing /nix/store/j28bnn9bjn4wf8zlhw3lddfk42p4f0i8-neovim-unwrapped-0.10.2/share/nvim/runtime/autoload/provider/clipboard.vim
Executing CursorMoved Autocommands for “*”
autocommand call s:Highlight_Matching_Pair()
Executing CursorMoved Autocommands for “NvimTree_*”
autocommand <Lua 260: /nix/store/g9cj33ia7ga8ijyr5dz3bflw1rmwac4n-neovim-pack-dir/pack/mnw/opt/nvim-tree-lua/lua/nvim-tree/explorer/init.lua:170>
Executing TextChanged Autocommands for “*”
autocommand call s:Highlight_Matching_Pair()
Executing SafeState Autocommands for “*”
autocommand call s:Highlight_Matching_Pair()
Executing TermResponse Autocommands for “*”
autocommand <Lua 22: vim/_defaults.lua:0>
}}}
Ned some help in tracing or debugging VIMINIT please.