Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/stefanlogue/hydrate.nvim

Reminders to keep hydrated while you code
https://github.com/stefanlogue/hydrate.nvim

neovim neovim-lua-plugin neovim-plugin

Last synced: 2 months ago
JSON representation

Reminders to keep hydrated while you code

Awesome Lists containing this project

README

        


GitHub Workflow Status (with event)
GitHub release (with filter)

💧 hydrate.nvim 💧


Neovim plugin to remind you to keep hydrated while you code

'Water is the only drink for a wise man' - Henry David Thoreau

[![Lua](https://img.shields.io/badge/Lua-blue.svg?style=for-the-badge&logo=lua)](http://www.lua.org)
[!["Buy Me A Coffee"](https://www.buymeacoffee.com/assets/img/custom_images/yellow_img.png)](https://www.buymeacoffee.com/stefanlogu4)

## Table of contents
- [Installation](#installation)
- [Optional Requirements](#requirements)
- [lazy.nvim](#lazy)
- [Config](#config)
- [Commands](#commands)
- [Contributing](#contributing)

## Installation

### Optional requirements
- [nvim-notify](https://github.com/rcarriga/nvim-notify)

### lazy.nvim
```lua
{
"stefanlogue/hydrate.nvim",
-- This installs the latest stable release.
-- Set to false or omit to install the latest development version
version = "*",
opts = {
-- See below for config options
}
}
```

## Config
This is a list of the options that can be passed to `require("hydrate").setup()` with their default values:
```lua
{
-- The interval between notifications in minutes
minute_interval = 20,

-- The render style for notifications
-- Accepted values are "default", "minimal", "simple" or "compact"
render_style = "compact",

-- Loads time of last drink on startup
-- Useful if you don't have long-running neovim instances
-- or if you tend to have multiple instances running at a time
persist_timer = false,

-- Sets the reminder message after "minute_interval" minutes have
-- passed to the the specified message
msg_hydrate_now = " 💧 Time for a drink ",

-- Sets the message after acknowledging the reminder to the
-- specified message
msg_hydrated = " 💧 You've had a drink, timer reset 💧"
}
```

## Commands
- `HydrateWhen` - Prints minutes until next drink
- `HydrateNow` - Tell us you've had a drink so we can reset the timer
- `DrinkInterval` - Set the interval between drinks in minutes
- `HydrateDisable` - Disable hydration reminders
- `HydrateEnable` - Enable hydration reminders

## Contributing
Please read the [CONTRIBUTING](https://github.com/stefanlogue/hydrate.nvim/blob/main/.github/CONTRIBUTING.md) guide before submitting a pull request.

## Acknowledgements
[stand.nvim](https://github.com/mvllow/stand.nvim) for the general idea