nvim-lua / kickstart.nvim

A launch point for your personal nvim configuration
MIT License
19.88k stars 24.04k forks source link

Getting error loading the init.lua file #1172

Closed royanirudd closed 1 month ago

royanirudd commented 1 month ago

Describe the bug

Uncommented clang option in mason part of init.lua file

To Reproduce

Added to my custom/plugins/init.lua

  {
    -- C++ formatter
    'jose-elias-alvarez/null-ls.nvim',
    event = 'VeryLazy',
    opts = function()
      return require 'custom.plugins.null-ls'
    end,
  },

Desktop

WSL2 , windows 10

Neovim Version

0.10.1

The following snippet comes in my :checkhealth

lazy: require("lazy.health").check()

lazy.nvim ~

royanirudd commented 1 month ago

Even when reverting all changes I get the error persisting

royanirudd commented 1 month ago

Had to reset the even to VeryLazy and it got rid of error message