nviiim/after/plugin/notify.lua
Robert Morrison d032e3e274
chore(repo): First contentful commit
This is the first commit that actually adds files to the repo.
Yes it's a bad commit but now the major features are here
2023-03-03 17:11:36 +00:00

8 lines
93 B
Lua

local ok, notify = pcall(require, 'notify')
if not ok then
return
end
vim.notify = notify