36 lines
1.0 KiB
Lua
36 lines
1.0 KiB
Lua
-- You can add your own plugins here or in other files in this directory!
|
|
-- I promise not to create any merge conflicts in this directory :)
|
|
--
|
|
-- See the kickstart.nvim README for more information
|
|
return {{
|
|
"lervag/vimtex",
|
|
lazy = false, -- we don't want to lazy load VimTeX
|
|
-- tag = "v2.15", -- uncomment to pin to a specific release
|
|
init = function()
|
|
-- VimTeX configuration goes here, e.g.
|
|
vim.g.vimtex_view_method = "zathura"
|
|
end
|
|
},
|
|
{"windwp/nvim-autopairs",
|
|
event = "InsertEnter",
|
|
config = true
|
|
},
|
|
{
|
|
"iamcco/markdown-preview.nvim",
|
|
cmd = { "MarkdownPreviewToggle", "MarkdownPreview", "MarkdownPreviewStop" },
|
|
build = "cd app && yarn install",
|
|
init = function()
|
|
vim.g.mkdp_filetypes = { "markdown" }
|
|
end,
|
|
ft = { "markdown" },
|
|
}
|
|
--[[
|
|
"iurimateus/luasnip-latex-snippets.nvim",
|
|
config = function()
|
|
require'luasnip-latex-snippets'.setup({use_treesitter=false})
|
|
-- or setup({ use_treesitter = true })
|
|
require("luasnip").config.setup({ enable_autosnippets = true })
|
|
end,
|
|
|
|
} ]]}
|