feat: VimTex

This commit is contained in:
♥ Minnie ♥ 2025-04-13 10:03:11 +08:00
parent 2186b0ce99
commit df42c36fc8
Signed by: jasmine
GPG key ID: 8563E358D4E8040E
3 changed files with 13 additions and 0 deletions

View file

@ -37,6 +37,7 @@
./plugins/utils/render-markdown.nix
./plugins/utils/telescope.nix
./plugins/utils/todo-comments.nix
./plugins/utils/vimtex.nix
./plugins/utils/whichkey.nix
];
}

View file

@ -23,6 +23,10 @@
{ # Markdown
name = "render_markdown";
}
{ # VimTex
name = "vimtex";
}
];
# Key mappings for the completion menu.

View file

@ -0,0 +1,8 @@
{ ... }: {
plugins.vimtex = {
enable = true;
settings = {
view_method = "zathura";
};
};
}