From a9ffa8d649cee1c5e1dfc01d2aa72ade50660044 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Moritz=20B=C3=B6hme?= Date: Wed, 13 Nov 2024 11:42:01 +0100 Subject: [PATCH] feat(nvim): add mini align --- modules/programs/nvim/new_plugins/other.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/modules/programs/nvim/new_plugins/other.nix b/modules/programs/nvim/new_plugins/other.nix index 7da6805..3107253 100644 --- a/modules/programs/nvim/new_plugins/other.nix +++ b/modules/programs/nvim/new_plugins/other.nix @@ -77,6 +77,15 @@ in ''; }; } + { + plugins.mini = { + enable = true; + modules = { + align = { }; + }; + }; + performance.combinePlugins.standalonePlugins = [ "mini.nvim" ]; + } ]; }; }