mirror of
https://github.com/NotAShelf/nvf.git
synced 2025-09-08 03:11:36 +00:00
treewide: move missing modules from 'with lib' to 'inherit (lib) ...'
This commit is contained in:
parent
4700a988b3
commit
7518c31ca8
43 changed files with 146 additions and 146 deletions
|
@ -2,9 +2,9 @@
|
|||
config,
|
||||
lib,
|
||||
...
|
||||
}:
|
||||
with lib;
|
||||
with builtins; let
|
||||
}: let
|
||||
inherit (lib) mkIf nvim;
|
||||
|
||||
cfg = config.vim.lsp;
|
||||
in {
|
||||
config = mkIf (cfg.enable && cfg.lsplines.enable) {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{lib, ...}:
|
||||
with lib;
|
||||
with builtins; {
|
||||
{lib, ...}: let
|
||||
inherit (lib) mkEnableOption;
|
||||
in {
|
||||
options.vim.lsp = {
|
||||
lsplines = {
|
||||
enable = mkEnableOption "diagnostics using virtual lines on top of the real line of code. [lsp_lines]";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue