Vim Lazy

GitHub: folke/lazy.nvim: 💤 A modern plugin manager for Neovim

Plugin configuration

 require("lazy").setup({
      spec = {
      
        -- plugin with default config
        'plugin/some-plugin',
        
        -- plugin with custom setup
          {
            'plugin/some-plugin-with-custom-setup',
            opts = {} -- this is equalent to setup({}) function
          },
          
        -- plugin with custom config
          {
            'plugin/some-plugin-with-custom-config',
                config = function()
                    -- custom config here
                end
          },
          
      },
      -- Configure any other settings here. See the documentation for more details.
      -- colorscheme that will be used when installing plugins.
      install = { colorscheme = { "habamax" } },
      -- automatically check for plugin updates
      checker = { enabled = true },
    })