lazyvim-starter

My configuration changes to https://github.com/LazyVim/starter
git clone https://git.eamoncaddigan.net/lazyvim-starter.git
Log | Files | Refs | README | LICENSE

commit 357089c42be72d1dede8a033b1bfd37543b625d1
parent 23b523c268dd4b5e3e7f8ca28bf8b1efa14f7888
Author: Eamon Caddigan <ec@eamoncaddigan.net>
Date:   Thu, 27 Mar 2025 20:58:21 -0700

feat: Add textobj-quote

Diffstat:
Alua/plugins/textobj-quote.lua | 13+++++++++++++
1 file changed, 13 insertions(+), 0 deletions(-)

diff --git a/lua/plugins/textobj-quote.lua b/lua/plugins/textobj-quote.lua @@ -0,0 +1,13 @@ +return { + "kana/vim-textobj-user", + { + "preservim/vim-textobj-quote", + dependencies = { + "kana/vim-textobj-user", + }, + ft = { "markdown" }, + config = function() + vim.fn["textobj#quote#init"]() + end, + }, +}