Skip to content

Commit

Permalink
feat!: setting vim.notify is now enabled by default. If you dont want…
Browse files Browse the repository at this point in the history
… this, disable it in the config
  • Loading branch information
folke committed Oct 6, 2022
1 parent cf26e2b commit 075b5dc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ Check the [wiki](https://github.com/folke/noice.nvim/wiki/Configuration-Recipes)
-- Notification messages have their level and other properties set.
-- event is always "notify" and kind can be any log level as a string
-- The default routes will forward notifications to nvim-notify
-- Benefit of using Noice for this is the routing and consistent history view
enabled = false,
},
throttle = 1000 / 30, -- how frequently does Noice need to check for ui updates? This has no effect when in blocking mode.
Expand Down
3 changes: 2 additions & 1 deletion lua/noice/config/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ M.defaults = {
-- Notification messages have their level and other properties set.
-- event is always "notify" and kind can be any log level as a string
-- The default routes will forward notifications to nvim-notify
enabled = false,
-- Benefit of using Noice for this is the routing and consistent history view
enabled = true,
},
throttle = 1000 / 30, -- how frequently does Noice need to check for ui updates? This has no effect when in blocking mode.
views = {}, -- @see section on views
Expand Down

0 comments on commit 075b5dc

Please sign in to comment.