chezmoi/dot_config/nvim/lua/plugins/markdown.lua

24 lines
449 B
Lua
Raw Normal View History

-- return {
-- -- Other plugins...
-- { "junegunn/goyo.vim" },
-- { "junegunn/limelight.vim" },
--}
-- vim.api.nvim_create_autocmd("FileType", {
-- pattern = "markdown",
-- callback = function()
-- vim.cmd("Goyo")
-- vim.cmd("Limelight")
-- end,
--})
-- Plugin definitions
local plugins = {
{ "preservim/vim-markdown" },
{ "junegunn/goyo.vim" },
{ "junegunn/limelight.vim" },
}
-- Return the plugins
return plugins