Cleanup residue from modularization

This commit is contained in:
isaacST08 2025-01-23 17:05:25 -07:00
commit 48674a46fa
4 changed files with 27 additions and 1094 deletions

View file

@ -1,28 +1,36 @@
# TODO:
# - Add Texlab LSP settings:
# - chktex
# - diagnosticsDelay
# - diagnostics
# - symbols
# - formatterLineLength
# - bibtexFormatter
# - latexFormatter
# - latexindent
# - completion
# - inlayHints
# - experimental
{
config,
pkgs,
lib,
...
}: let
inherit (lib.options) mkEnableOption mkOption;
inherit (lib.modules) mkIf mkMerge;
inherit (lib.options) mkOption;
inherit (lib.modules) mkIf;
inherit
(lib.types)
bool
either
enum
ints
listOf
oneOf
package
str
;
inherit (lib.nvim.types) mkGrammarOption;
inherit
(builtins)
any
attrNames
attrValues
concatLists
concatStringsSep
elem