summaryrefslogtreecommitdiff
path: root/lua/config/plugins/ui.lua
blob: 9a3da12d7c32f108210dcf85a7b0fa4a2b7893ee (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
return {
  {
    "noice.nvim",
    event = "DeferredUIEnter",
    after = function(_)
      require("noice").setup()
    end,
  },

  {
    "todo-comments.nvim",
    event = "DeferredUIEnter",
    after = function (_)
      require("todo-comments").setup()
    end
  },
}