Code Monkey home page Code Monkey logo

kiwi.nvim's Introduction

kiwi.nvim ๐Ÿฅ

Hits


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 <C-o> to move back

With kiwi.nvim, you can:

  • Organize notes and ideas
  • Manage to-do lists
  • Write documentation
  • Write blog posts to Hugo or Astro

To do a quick start, press <Leader>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 required

Feed it with the following example:

# 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 <C-o> 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:

# 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 todo.md

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

Add the following to the plugin-configuration in your vimrc:

Plug 'serenevoid/kiwi.nvim'

Then run :PlugInstall.

Installation using Packer

use {
    'serenevoid/kiwi.nvim', 
    requires = { {'nvim-lua/plenary.nvim'} }
}

Installation using Lazy

-- 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 users,

{
    'serenevoid/kiwi.nvim',
    dependencies = {
        "nvim-lua/plenary.nvim"
    },
    opts = {
        {
            name = "work",
            path = "/home/username/wiki_1"
        },
        {
            name = "personal",
            path = "/home/username/wiki_2"
        }
    },
    keys = {
        { "<leader>ww", ":lua require(\"kiwi\").open_wiki_index()<cr>", desc = "Open Wiki index" },
        { "<leader>wp", ":lua require(\"kiwi\").open_wiki_index(\"personal\")<cr>", desc = "Open index of personal wiki" },
        { "T", ":lua require(\"kiwi\").todo.toggle()<cr>", desc = "Toggle Markdown Task" }
    },
    lazy = true
}

For others,

-- 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', '<leader>ww', kiwi.open_wiki_index, {})
vim.keymap.set('n', 'T', kiwi.todo.toggle, {})

Key bindings

Basic key bindings

  • <Enter> -- In visual mode: Follow/Create wiki link, in Normal mode just follow
  • <Tab> -- 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

kiwi.nvim's People

Contributors

serenevoid avatar mcjvanschaik avatar jqfeld avatar kitsugo avatar catalinplesu avatar clanktron avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.