nixvim-config/config/plugins/utils/vimtex.nix
2025-07-09 03:34:48 +08:00

11 lines
196 B
Nix

{ pkgs, ... }: {
plugins.vimtex = {
enable = true;
texlivePackage = pkgs.texliveFull;
# Settings for the VimTeX plugin
settings = {
view_method = "zathura";
};
};
}