An nvim plugin that reminds you to drink water.
- Neovim 0.10+
- nvim-notify
lazy.nvim
{
"steventhorne/nvim-waterme",
dependencies = {
{ "rcarriga/nvim-notify" },
},
config = function()
require("nvim-waterme").setup()
end
}
Packer
use {
"steventhorne/nvim-waterme",
requires = { "rcarriga/nvim-notify" },
config = function()
require("nvim-waterme").setup()
end
}
require("nvim-waterme").setup({
interval = 900, -- 15 minutes
message = "Time to drink water!",
})
Vim highlight WatermeNormal
can also be changed to customize the notification border.