From 1cd118a2a8076864633178a1b909a505fc6fa975 Mon Sep 17 00:00:00 2001 From: Isshi0417 Date: Fri, 19 Jul 2024 15:51:55 +0900 Subject: [PATCH] Add floaterm plugin --- modules/home-manager/nixvim/plugins/floaterm.nix | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 modules/home-manager/nixvim/plugins/floaterm.nix diff --git a/modules/home-manager/nixvim/plugins/floaterm.nix b/modules/home-manager/nixvim/plugins/floaterm.nix new file mode 100644 index 0000000..e60b43d --- /dev/null +++ b/modules/home-manager/nixvim/plugins/floaterm.nix @@ -0,0 +1,7 @@ +{ ... }: + +{ + program.nixvim.plugins.floaterm = { + enable = true; + }; +}