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

textobj-quote.lua (236B)


      1 return {
      2   "kana/vim-textobj-user",
      3   {
      4     "preservim/vim-textobj-quote",
      5     dependencies = {
      6       "kana/vim-textobj-user",
      7     },
      8     ft = { "markdown" },
      9     config = function()
     10       vim.fn["textobj#quote#init"]()
     11     end,
     12   },
     13 }