refactor(plugins)!: remove nvim-notify from core (#3300)

This commit is contained in:
Mark Huggins 2022-10-21 01:21:22 -04:00 committed by GitHub
parent 30c65cfd74
commit 36c8bdee9f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 12 additions and 109 deletions

View file

@ -46,6 +46,11 @@ function M:init()
friendly_snippets = true,
},
}
---@deprecated
lvim.builtin.notify = {
active = false
}
end
local function handle_deprecated_settings()
@ -93,6 +98,13 @@ local function handle_deprecated_settings()
deprecation_notice("lvim.builtin.dashboard", "Use `lvim.builtin.alpha` instead. See LunarVim#1906")
end
-- notify.nvim
if lvim.builtin.notify.active then
deprecation_notice("lvim.builtin.notify", "See LunarVim#3294")
end
if lvim.autocommands.custom_groups then
deprecation_notice(
"lvim.autocommands.custom_groups",