mirror of
https://github.com/NotAShelf/nvf.git
synced 2025-09-06 10:21:31 +00:00
treewide: move from 'with lib' to 'inherit (lib) ...'
This commit is contained in:
parent
3fde6a4bf3
commit
ffa25c8c8a
90 changed files with 281 additions and 273 deletions
|
@ -2,9 +2,9 @@
|
|||
config,
|
||||
lib,
|
||||
...
|
||||
}:
|
||||
with lib;
|
||||
with builtins; let
|
||||
}: let
|
||||
inherit (lib) addDescriptionsToMappings mkIf optional mkSetBinding mkMerge nvim;
|
||||
|
||||
cfg = config.vim.treesitter;
|
||||
usingNvimCmp = config.vim.autocomplete.enable && config.vim.autocomplete.type == "nvim-cmp";
|
||||
|
||||
|
|
|
@ -3,9 +3,9 @@
|
|||
config,
|
||||
lib,
|
||||
...
|
||||
}:
|
||||
with lib;
|
||||
with builtins; let
|
||||
}: let
|
||||
inherit (lib) mkEnableOption mkOption types mkIf nvim boolToString;
|
||||
|
||||
treesitter = config.vim.treesitter;
|
||||
cfg = treesitter.context;
|
||||
in {
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
{lib, ...}:
|
||||
with lib; {
|
||||
{lib, ...}: let
|
||||
inherit (lib) mkEnableOption mkMappingOption mkOption types;
|
||||
in {
|
||||
options.vim.treesitter = {
|
||||
enable = mkEnableOption "treesitter, also enabled automatically through language options";
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue