Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/serenevoid/kiwi.nvim
A stripped down VimWiki for Neovim
https://github.com/serenevoid/kiwi.nvim
lua markdown neovim plugin wiki
Last synced: 14 days ago
JSON representation
A stripped down VimWiki for Neovim
- Host: GitHub
- URL: https://github.com/serenevoid/kiwi.nvim
- Owner: serenevoid
- License: gpl-3.0
- Created: 2023-07-13T05:10:06.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-08-03T04:39:14.000Z (3 months ago)
- Last Synced: 2024-08-03T05:35:37.293Z (3 months ago)
- Topics: lua, markdown, neovim, plugin, wiki
- Language: Lua
- Homepage: https://serenevoid.github.io/blog/my-note-taking-plugin
- Size: 64.5 KB
- Stars: 175
- Watchers: 8
- Forks: 9
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-neovim - serenevoid/kiwi.nvim - A stripped down VimWiki with necessary features. (Note Taking / Cursorline)
README
# kiwi.nvim 🥝
[![Hits](https://hits.sh/github.com/serenevoid/kiwi.nvim.svg)](https://hits.sh/github.com/serenevoid/kiwi.nvim/)
- [Intro](#introduction)
- [Screenshots](#screenshots)
- [Installation](#installation)
- [Usage](#usage)
- [Key Bindings](#key-bindings)
- [Helping kiwi.nvim](#helping-kiwinvim)
- [License](./LICENSE)----
## Introduction
`kiwi.nvim` is a stripped down version of VimWiki for Neovim.
| VimWiki | kiwi.nvim |
|---|---|
| Multiple syntaxes | Sticks to markdown |
| Syntax highlights included | User can install Treesitter plugins `markdown` and `markdown-inline` if required |
| Keymaps like Backspace for autosave | Stick to manual saves and `` to move back |With `kiwi.nvim`, you can:
- Organize notes and ideas
- Manage to-do lists
- Write documentation
- Write blog posts to Hugo or AstroTo do a quick start, press `ww` (default is `\ww`) to go to your index
wiki file. By default, it is located in `~/wiki/index.md`.
To register a different path for the wiki, you can specify the path inside the
setup function if requiredFeed it with the following example:
```text
# My knowledge base
- Tasks -- things to be done _yesterday_!!!
- Project Gutenberg -- good books are power.
- Scratchpad -- various temporary stuff.
```Place your cursor on `Tasks` and press Enter to create a link. Once pressed,
`Tasks` will become `[Tasks](./Tasks.md)` and open it. Edit the file, save it.
To go back, you can press `` to move to the previous file. Backspace is not
mapped to go back since we already have vim keybindings to move back.A markdown link can be constructed from more than one word. Just visually
select the words to be linked and press Enter. Try it, with `Project Gutenberg`.
The result should look something like:```text
# My knowledge base
- [Tasks](./Tasks.md) -- things to be done _yesterday_!!!
- [Project Gutenberg](./Project_Gutenberg.md) -- good books are power.
- Scratchpad -- various temporary stuff.
```## Screenshots
![custom_note.md](https://u.cubeupload.com/serenevoid/6JqlpX.png)
![todo.md](https://u.cubeupload.com/serenevoid/6JqlpX.png)## Installation
`kiwi.nvim` has been tested on **Neovim >= 0.7**. It will likely work on older
versions but will not be officially supported.### Dependencies
`kiwi.nvim` has dependency on `nvim-lua/plenary.nvim`.
### Installation using [Vim-Plug](https://github.com/junegunn/vim-plug)
Add the following to the plugin-configuration in your vimrc:
```vim
Plug 'serenevoid/kiwi.nvim'
```
Then run `:PlugInstall`.
### Installation using [Packer](https://github.com/wbthomason/packer.nvim)
```lua
use {
'serenevoid/kiwi.nvim',
requires = { {'nvim-lua/plenary.nvim'} }
}```
### Installation using [Lazy](https://github.com/folke/lazy.nvim)
```lua
-- init.lua:
{
'serenevoid/kiwi.nvim', dependencies = { 'nvim-lua/plenary.nvim' }
}-- plugins/kiwi.lua:
return {
'serenevoid/kiwi.nvim', dependencies = { 'nvim-lua/plenary.nvim' }
}```
## Usage
For [Lazy](https://github.com/folke/lazy.nvim) users,
```lua
{
'serenevoid/kiwi.nvim',
dependencies = {
"nvim-lua/plenary.nvim"
},
opts = {
{
name = "work",
path = "/home/username/wiki_1"
},
{
name = "personal",
path = "/home/username/wiki_2"
}
},
keys = {
{ "ww", ":lua require(\"kiwi\").open_wiki_index()", desc = "Open Wiki index" },
{ "wp", ":lua require(\"kiwi\").open_wiki_index(\"personal\")", desc = "Open index of personal wiki" },
{ "T", ":lua require(\"kiwi\").todo.toggle()", desc = "Toggle Markdown Task" }
},
lazy = true
}
```For others,
```lua
-- Setup Custom wiki path if required
require('kiwi').setup({
{
name = "work",
path = "C:\\Users\\username\\personal-wiki" -- For Windows users
},
{
name = "personal",
path = "/home/username/personal-wiki"
}
})-- Use default path (i.e. ~/wiki/)
local kiwi = require('kiwi')-- Necessary keybindings
vim.keymap.set('n', 'ww', kiwi.open_wiki_index, {})
vim.keymap.set('n', 'T', kiwi.todo.toggle, {})
```## Key bindings
### Basic key bindings
- `` -- In visual mode: Follow/Create wiki link, in Normal mode just follow
- `` -- Find next wiki link.## Helping `kiwi.nvim`
This is a new project which aims to be a minimal wiki plugin which is very barebones
and doesn't add features which a lot people doesn't use now. You can help by raising issues
and bug fixes to help develop this project for the neovim community.## Stargazers over time
[![Stargazers over time](https://starchart.cc/serenevoid/kiwi.nvim.svg)](https://starchart.cc/serenevoid/kiwi.nvim)