24 lines
449 B
Lua
24 lines
449 B
Lua
|
|
-- 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
|