From 009e6b247e40aea29bce52cec6a667cceaff1a6b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Mon, 20 May 2024 09:32:00 +0000 Subject: [PATCH] chore(build): auto-generate vimdoc --- doc/emoji.nvim.txt | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/doc/emoji.nvim.txt b/doc/emoji.nvim.txt index 356c0cf..ca208bf 100644 --- a/doc/emoji.nvim.txt +++ b/doc/emoji.nvim.txt @@ -1,4 +1,4 @@ -*emoji.nvim.txt* For Neovim >= 0.9.0 Last change: 2024 March 10 +*emoji.nvim.txt* For Neovim >= 0.9.0 Last change: 2024 May 20 ============================================================================== Table of Contents *emoji.nvim-table-of-contents* @@ -59,6 +59,11 @@ With Lazy.nvim -- is not vim.fn.stdpath("data") .. "/lazy/ plugin_path = vim.fn.expand("$HOME/plugins/"), }, + config = function(_, opts) + require("emoji").setup(opts) + -- optional for telescope integration + require("telescope").load_extension("emoji") + end, } <