From e95a34d099944eed2be0ee61e0c178fe315e9e55 Mon Sep 17 00:00:00 2001 From: Juan R <994594+juaoose@users.noreply.github.com> Date: Mon, 30 Mar 2026 10:14:28 -0500 Subject: [PATCH] docs: add note on new neovims plugin manager --- README.md | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/README.md b/README.md index 9b64758..3a79972 100644 --- a/README.md +++ b/README.md @@ -20,6 +20,31 @@ Very fast autocomplete +[Neovim's plugin manager](https://neovim.io/doc/user/pack/#_plugin-manager) + + + + +```lua +vim.pack.add({ + "https://github.com/numerataz/ninetyfive.nvim" +}) + +-- Then you can call setup +require("ninetyfive").setup({ + enable_on_startup = true, -- Enable plugin on startup + mappings = { + accept = "", -- Change default keybindings + reject = "", -- Change default keybindings + } +}) +``` + + + + + + [wbthomason/packer.nvim](https://github.com/wbthomason/packer.nvim)