neovim new config

This commit is contained in:
afoucaultc 2026-08-19 14:54:41 +02:00
parent 763bbf5cc1
commit 315e988734
50 changed files with 739 additions and 52 deletions

View file

@ -0,0 +1,16 @@
{ 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/";
};
};
}