feat: authoring plugins

This commit is contained in:
Thomas Alcala Schneider 2023-05-20 13:46:50 +02:00
parent dfc3c98bf6
commit 3cdca2add9
No known key found for this signature in database
GPG key ID: 24BE5CF48622091B
7 changed files with 102 additions and 0 deletions

View file

@ -0,0 +1,15 @@
return {
'preservim/vim-textobj-quote',
dependencies = { 'kana/vim-textobj-user' },
config = function()
vim.cmd [[
augroup textobj_quote
autocmd!
autocmd FileType markdown call textobj#quote#init()
autocmd FileType textile call textobj#quote#init()
autocmd FileType text call textobj#quote#init({'educate': 0})
augroup END
]]
end,
ft = { 'markdown', 'mkd', 'textile', 'tex', 'text' },
}