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
- Quick Note taking
- Auto saving
- Unobtrussive
- Supports Markdown
Plug 'TheLastCD/simple-note.nvim'
lua require('simple_note').setup()
use {
"TheLastCD/simple-note.nvim",
config = function()
require("simple_note").setup()
end,
}
{
"TheLastCD/simple-note.nvim",
config = function()
require("simple_note").setup()
end,
}
- exit simple note with , q or Q when in Normal mode
- Launch Simple note using ns
- Simple Note supports changes to:
- Hotkey: default
<leader> ns - Window:
- Border
- Width
- Height
- Anchor
- Hotkey: default
require("simple_note").setup(
{
hotkey = "<leader>ns",
window = {
border = "rounded",
width = 0.6,
height = 0.4,
anchor = "NW",
},
})