Skip to content

Latest commit

 

History

History
49 lines (37 loc) · 1.1 KB

README.md

File metadata and controls

49 lines (37 loc) · 1.1 KB

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

{

  "dhananjaylatkar/notes.nvim",
  dependencies = {
    "nvim-telescope/telescope.nvim", -- for picker="telescope"
    "echasnovski/mini.pick", -- for picker="mini-pick"
  },
  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:

{
  -- notes root dir
  root = os.getenv("HOME") .. "/code/notes/",
  -- picker
  picker = "telescope", -- "telescope" or "mini-pick"
}

Commands

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