nixos-config/home/afoucaultc/packages/neovim/plugins/vimtex.nix
2026-08-19 14:54:41 +02:00

16 lines
370 B
Nix

{ config, ... }:
{
programs.nixvim.plugins.vimtex = {
enable = true;
autoLoad = true;
settings = {
view_method = "zathura";
complete_close_brace = 1;
format_enabled = 1;
imaps_enabled = 0;
complete_enabled = 0;
syntax_enabled = 0;
compiler_latexmk.aux_dir = "${config.home.homeDirectory}/.aux-tex/";
};
};
}