Ecosyste.ms: Awesome

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

https://github.com/dhananjaylatkar/notes.nvim

Simple Note Taking Plugin
https://github.com/dhananjaylatkar/notes.nvim

neovim neovim-plugin note-taking notes nvim nvim-plugin

Last synced: 24 days ago
JSON representation

Simple Note Taking Plugin

Lists

README

        

# notes.nvim

Simple Note Taking Plugin

- No overwhelmingly extra features.
- Uses Markdown because that's more than enough. (And why would you want to learn something just to take notes)
- Configure root directory and start being productive.

## Installation

Using [lazy.nvim](https://github.com/folke/lazy.nvim)

```lua
{

"dhananjaylatkar/notes.nvim",
dependencies = {
"nvim-telescope/telescope.nvim"
},
opts = {
-- USE EMPTY FOR DEFAULT OPTIONS
-- DEFAULTS ARE LISTED BELOW
},
}
```

## Configuration

_**You must run `require("notes").setup()` to initialize the plugin.**_

_notes.nvim_ comes with following defaults:

```lua
{
-- notes root dir
root = os.getenv("HOME") .. "/code/notes/",
}
```

## Commands

| Command | Action |
| ------------ | --------------------------- |
| `:NotesFind` | Find notes in root dir |
| `:NotesGrep` | Grep notes in root dir |
| `:NotesNew` | Create new note in root dir |