nix-config/programs/nixvim/_plugins/floaterm.nix

15 lines
194 B
Nix
Raw Normal View History

2025-10-03 20:20:39 -07:00
{ ... }:
{
programs.nixvim.plugins.floaterm = {
enable = true;
settings = {
width = 0.8;
height = 0.8;
title = "";
keymap_toggle = "<leader>,";
};
};
}