Untested POC

This commit is contained in:
Alex Selimov 2025-10-05 20:23:47 -04:00
parent 461318a656
commit bfb9b61194
Signed by: aselimov
GPG key ID: 3DDB9C3E023F1F31
5 changed files with 254 additions and 0 deletions

View file

@ -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