Untested POC
This commit is contained in:
parent
461318a656
commit
bfb9b61194
5 changed files with 254 additions and 0 deletions
23
README.md
23
README.md
|
@ -19,6 +19,29 @@ A relational document system for Neovim that brings Notion-like database capabil
|
|||
|
||||
### Installation
|
||||
|
||||
Using [lazy.nvim](https://github.com/folke/lazy.nvim) (recommended):
|
||||
|
||||
```lua
|
||||
{
|
||||
'your-username/notex.nvim',
|
||||
dependencies = {
|
||||
'nvim-lua/plenary.nvim',
|
||||
'nvim-tree/nvim-web-devicons'
|
||||
},
|
||||
config = function()
|
||||
require('notex').setup({
|
||||
-- Configuration options
|
||||
database_path = vim.fn.stdpath('data') .. '/notex/notex.db',
|
||||
auto_index = true,
|
||||
performance = {
|
||||
enable_caching = true,
|
||||
cache_size = 100
|
||||
}
|
||||
})
|
||||
end
|
||||
}
|
||||
```
|
||||
|
||||
Using [packer.nvim](https://github.com/wbthomason/packer.nvim):
|
||||
|
||||
```lua
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue