summaryrefslogtreecommitdiff
path: root/.config/nvim/lua/plugins/vimtex.lua
blob: f14d0eac0a269fb2d706ef0fd8aa1cad56521ac2 (plain)
1
2
3
4
5
6
7
8
9
10
return {
    {
        "lervag/vimtex",
        ft = { "tex", "bib" },
        dependencies = { "nvim-treesitter/nvim-treesitter" },
        config = function()
            vim.g.vimtex_view_method = "mupdf"
        end
    }
}