rcarriga / nvim-notify

A fancy, configurable, notification manager for NeoVim
MIT License
2.91k stars 74 forks source link

Error with :Telescope notify #217

Closed sdondley closed 11 months ago

sdondley commented 11 months ago

Getting an error with the :Telescope notify command mentioned in the README:

ERROR [telescope.run_command]: Unknown command

Telescope is enabled and plenary.nvim is installed.

sdondley commented 11 months ago

OK, my bad, should have read tried the advice in the next paragraph first.

Note: If you lazy load telescope you should manually call require("telescope").load_extension("notify") before using the above commands. If you don't lazy load telescope then notify does this for you.

I'm using LazyVim. So you can drop this into the config:

  { "nvim-telescope/telescope.nvim",
    setup = {
      require('telescope').load_extensions.("notify")
    }
  },