Skip to content

steventhorne/nvim-waterme

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

nvim-waterme

An nvim plugin that reminds you to drink water.

Requirements

  • Neovim 0.10+
  • nvim-notify

Installation

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
}

Configuration

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.

About

An nvim plugin that reminds you to drink water

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages