From 7e692033907d1537d1a795ce44efc9d9bfb2367f Mon Sep 17 00:00:00 2001 From: NotAShelf Date: Fri, 3 Feb 2023 22:15:19 +0300 Subject: [PATCH] dev: remove TODO and in favor of flake FIXME --- modules/minimap/minimap-vim.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/modules/minimap/minimap-vim.nix b/modules/minimap/minimap-vim.nix index 5acec38..dfdaae9 100644 --- a/modules/minimap/minimap-vim.nix +++ b/modules/minimap/minimap-vim.nix @@ -13,7 +13,8 @@ in { }; config = mkIf cfg.enable { - vim.startPlugins = ["minimap-vim"]; - # TODO: figure out a way to import the code-minimap package from nixpkgs + vim.startPlugins = [ + "minimap-vim" + ]; }; }