15 lines
288 B
Nix
15 lines
288 B
Nix
{...}: {
|
|
programs.nixvim = {
|
|
plugins.vimtex = {
|
|
enable = true;
|
|
settings = {
|
|
compiler_method = "latexrun";
|
|
toc_config = {
|
|
split_pos = "vert topleft";
|
|
split_width = 40;
|
|
};
|
|
view_method = "zathura";
|
|
};
|
|
};
|
|
};
|
|
}
|