From 6e2065643d27dc91d785b09ea898af1e1382e3b3 Mon Sep 17 00:00:00 2001 From: Aaron Pham Date: Tue, 29 Oct 2024 00:55:59 -0400 Subject: [PATCH] chore(docs): update notes specific for Lua (#768) --- README.md | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 35bc8ce..81fef5e 100644 --- a/README.md +++ b/README.md @@ -157,13 +157,13 @@ require('avante').setup ({ }) ``` - - > [!IMPORTANT] > > For `avante.tokenizers` and templates to work, make sure to call `require('avante_lib').load()` somewhere when entering the editor. > We will leave the users to decide where it fits to do this, as this varies among configurations. (But we do recommend running this after where you set your colorscheme) + + > [!IMPORTANT] > > `avante.nvim` is currently only compatible with Neovim 0.10.1 or later. Please ensure that your Neovim version meets these requirements before proceeding. @@ -185,9 +185,7 @@ require('avante').setup ({ > ```lua > { > "MeanderingProgrammer/render-markdown.nvim", -> opts = { -> file_types = { "markdown", "Avante" }, -> }, +> opts = { file_types = { "markdown", "Avante" } }, > ft = { "markdown", "Avante" }, > } > ```