You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kickstart.nvim/lua/custom/plugins/notes/vim-pencil.lua

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' },
}