Skip to content

TheLastCD/simple-note.nvim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 

Repository files navigation

simple-note.nvim

Introduction

image

Simple Note is a compact and small note taking popup window for neovim.

Note for the markdown to be rendered as shown in screenshot use plugin like: render-markdown.nvim

Features

  • Quick Note taking
  • Auto saving
  • Unobtrussive
  • Supports Markdown

Install

vim-plug

Plug 'TheLastCD/simple-note.nvim'
lua require('simple_note').setup()

packer.nvim

use {
"TheLastCD/simple-note.nvim",
config = function()
require("simple_note").setup()
end,
}

lazy.nvim

{
"TheLastCD/simple-note.nvim",
config = function()
require("simple_note").setup()
end,
}

Navigation

  • exit simple note with , q or Q when in Normal mode
  • Launch Simple note using ns

Customisation

  • Simple Note supports changes to:
    • Hotkey: default <leader> ns
    • Window:
      • Border
      • Width
      • Height
      • Anchor
require("simple_note").setup(
{
  hotkey = "<leader>ns",
  window = {
    border = "rounded",
    width = 0.6,
    height = 0.4,
    anchor = "NW",
  },
})

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages