1
Fork 0
satellite/dotfiles/neovim/lua/my/plugins/vimtex.lua
2022-02-09 22:20:34 +02:00

11 lines
157 B
Lua

local global = require("my.helpers").global
local M = {}
function M.setup()
-- Viewer method
global("vimtex_view_method", "zathura")
end
return M