From 1abdc904111dc340d7e4d96f7ea218ce8042cab5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=A9tan=20Lepage?= <33058747+GaetanLepage@users.noreply.github.com> Date: Sat, 25 Feb 2023 18:31:15 +0100 Subject: [PATCH] plugins/{nvim-tree,neorg}: fix typo (#201) --- plugins/utils/neorg.nix | 2 +- plugins/utils/nvim-tree.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/utils/neorg.nix b/plugins/utils/neorg.nix index 997eafa6..233f8994 100644 --- a/plugins/utils/neorg.nix +++ b/plugins/utils/neorg.nix @@ -129,7 +129,7 @@ in in if (isInt level) then level - else helpers.mkRaw "vim.log.levels.${string.toUpper level}"; + else helpers.mkRaw "vim.log.levels.${strings.toUpper level}"; }) cfg.logger.modes; float_precision = cfg.logger.floatPrecision; diff --git a/plugins/utils/nvim-tree.nix b/plugins/utils/nvim-tree.nix index 054d7e13..70423af8 100644 --- a/plugins/utils/nvim-tree.nix +++ b/plugins/utils/nvim-tree.nix @@ -994,7 +994,7 @@ in { name: value: if value == null then null - else helpers.mkRaw "vim.diagnostic.severity.${string.toUpper value}" + else helpers.mkRaw "vim.diagnostic.severity.${strings.toUpper value}" ) severity; };