Thomas Alcala Schneider 3cdca2add9
feat: authoring plugins
2023-05-20 13:46:50 +02:00

14 lines
314 B
Lua

return {
'preservim/vim-pencil',
config = function()
vim.cmd [[
augroup pencil
autocmd!
autocmd FileType markdown,mkd call pencil#init()
autocmd FileType text call pencil#init()
augroup END
]]
end,
ft = { 'markdown', 'mkd', 'textile', 'tex', 'text' },
}