formating plugins/latex/vimtex/vimtex/nix

This commit is contained in:
mugaizzo 2025-11-13 23:49:08 -07:00
commit 17e88f4225

View file

@ -3,7 +3,6 @@
inherit (lib.types) bool str listOf; inherit (lib.types) bool str listOf;
inherit (lib.nvim.types) mkPluginSetupOption; inherit (lib.nvim.types) mkPluginSetupOption;
in { in {
options.vim.latex.vimtex = { options.vim.latex.vimtex = {
enable = mkEnableOption "VimTeX is a modern Vim and Neovim filetype and syntax plugin for LaTeX files."; enable = mkEnableOption "VimTeX is a modern Vim and Neovim filetype and syntax plugin for LaTeX files.";
@ -22,18 +21,18 @@ in {
type = bool; type = bool;
default = false; default = false;
description = '' description = ''
vimtex syntax enabled vimtex syntax enabled
The default value is false''; The default value is false'';
}; };
vimtex_quickfix_ignore_filters = mkOption { vimtex_quickfix_ignore_filters = mkOption {
type = listOf str; type = listOf str;
default = []; default = [];
description = '' description = ''
vimtex quickfix ignore filters vimtex quickfix ignore filters
The default value is []''; The default value is []'';
}; };
}; };
}; };