Skip to content

A neovim plugin to organize your notes with the PARA method

License

Notifications You must be signed in to change notification settings

tandetat/para.nvim

Repository files navigation

para.nvim

Features

  • Write your PARA method notes from inside Neovim

Installation

-- lazy.nvim
{
	"tandetat/para.nvim",
},

-- packer
use {
	"tandetat/para.nvim",
}

Configuration

-- default settings
require("para").setup {
	vault_dir = nil,
}

You should pass the parent directory to your PARA folders to vault_dir.

Example Configuration

{
    'tandetat/para.nvim',
    event = 'VeryLazy',
    keys = {
      { '<leader>pp', '<cmd>ParaNewProject<cr>', desc = 'PARA' },
      { '<leader>pa', '<cmd>ParaNewArea<cr>', desc = 'PARA' },
      { '<leader>pr', '<cmd>ParaNewResource<cr>', desc = 'PARA' },
    },
    opts = {
      vault_dir = os.getenv 'VAULT_DIR',
    },
}

Usage

  • :ParaNewArea to create a new note in Areas
  • :ParaNewProject to create a new note in Projects
  • :ParaNewResource to create a new note in Resources

About

A neovim plugin to organize your notes with the PARA method

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published